sindyho0374
Mitglied
Guten Abend Leuts,
hab ein kleines Problem mit include.
Vielleicht seid Ihr ja so gut und könntet mir da mal weiterhelfen
Hier mal der Code:
Es werden keine Inhalte angezeigt im DIV ausgabe_inhalte die ich halt durch den include Befehl aufrufen möchte.
hab ein kleines Problem mit include.
Vielleicht seid Ihr ja so gut und könntet mir da mal weiterhelfen
Hier mal der Code:
PHP:
<?php
error_reporting(0);
ini_set('display_errors', 1);
$s = array();
$s['news'] = 'news.php';
$s['agb'] = 'agb.php';
$s['kontakt'] = 'kontakt.php';
$s['impressum'] = 'impressum.php';
$s = @$_GET["s"];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>magnetschild24.de-Wir realisieren Ihre Idee!</title>
<link rel="shortcut icon" href="favicon.ico" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!--Content-->
<div id="content">
<!--Head-->
<div id="head" title="magnetschild24.de-Wir realisieren Ihre Idee!">
<!--Navi_Top-->
<div id="navi_top">
<a href="index.php?s=index" title="Startseite"<?php echo ($s == 'index' || $s == NULL ?' class="hauptlink"':' class="hoverlink"'); ?>>Startseite ·</a>
<a href="index.php?s=agb" title="AGB"<?php echo $s == 'agb'?' class="hauptlink"':' class="hoverlink"'; ?>>AGB ·</a>
<a href="index.php?s=kontakt" title="Kontakt"<?php echo $s == 'kontakt'?' class="hauptlink"':' class="hoverlink"'; ?>>Kontakt ·</a>
<a href="index.php?s=impressum" title="Impressum"<?php echo $s == 'impressum'?' class="hauptlink"':' class="hoverlink"'; ?>>Impressum</a>
</div>
<!--End Navi_Top-->
</div>
<!--End Head-->
<!--Navigation-Horizontal-->
<div id="navigation">
<div id="navi">
<ul>
<li><a href="index.php" title="Startseite">Startseite</a></li>
<li><a href="index.php?s=magnetschilder" title="Magnetschilder">Magnetschilder</a></li>
<li><a href="index.php?s=produkthinweise" title="Produkthinweise">Produkthinweise</a></li>
<li><a href="index.php?s=feedback" title="Über einen Gästebucheintrag würden wir uns freuen.">Feedback</a></li>
<li><a href="index.php?s=links" title="Links">Links</a></li>
<li><a href="shop" title="Shop">Shop</a></li>
</ul>
</div>
</div>
<!--End Navigation-Horizontal-->
<!--Ausgabe Inhalte-->
<div id="ausgabe_inhalte">
<?php
If(array_key_exists($_GET['s'], $s))
{
include($s[$_GET['s']]);
} else {
include($s['news']);
}
?>
</div>
<!--End Ausgabe Inhalte-->
<!--Footer-->
<div id="footer">
<!--Links und Firmenlogos-->
<div id="links_firmenlogos">
<!--Shopbutton-->
<div id="shopbutton">
<a href="shop.php" title="...zum Onlineshop"><img src="grafiken_website/shopbutton.png" border="0" /></a>
</div>
<!--End Shopbutton-->
<!--Links-->
<div id="links">
<a href="index.php?s=index" title="Startseite">Startseite ·</a>
<a href="index.php?s=magnetschilder" title="Magnetschilder">Magnetschilder ·</a>
<a href="index.php?s=produkthinweise" title="Produkthinweise">Produkthinweise ·</a>
<a href="index.php?s=feedback" title="Feedback">Feedback ·</a>
<a href="index.php?s=links" title="Links">Links ·</a>
<a href="index.php?s=shop" title="Shop">Shop ·</a>
<a href="index.php?s=agb" title="Allgemeine Geschäfts Bedingungen">AGB ·</a>
<a href="index.php?s=kontakt" title="Kontakt">Kontakt ·</a>
<a href="index.php?s=impressum" title="Impressum">Impressum</a>
<p title="Copyrightinfo">© 2010 Internet PC Service | Email: <a title="info[at]magnetschild24.de" href="mailto:info@magnetschild24.de">info@magnetschild24.de</a> <a href="http://www.magnetschild24.de" title="www.magnetschild24.de">www.magnetschild24.de</a> | <a href="http://www.saxana.com" title="www.saxana.com">www.saxana.com</a>
</p>
</div>
<!--End Links-->
<!--Firmenlogos-->
<div id="firmenlogos">
<img src="grafiken_website/magnetschild_logo_footer.png" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area shape="rect" coords="34,6,267,63" href="http://www.magnetschild24.de" alt="www.magnetschild24.de" title="www.magnetschild24.de" />
<area shape="rect" coords="35,65,190,93" href="http://www.saxana.com" alt="www.saxana.com" title="www.saxana.com" />
</map>
</div>
<!--End Firmenlogos-->
</div>
<!--End Links und Firmenlogos-->
<!--Copyright-->
<!--End Copyright-->
</div>
<!--End Footer-->
</div>
<!--End Content-->
</body>
</html>
Es werden keine Inhalte angezeigt im DIV ausgabe_inhalte die ich halt durch den include Befehl aufrufen möchte.