Hilfe beim erstellen des Layouts mit include()Forum » Webzone » PHP & MySQL » Hilfe beim erstellen des Layouts mit include()
-
07.04.2012 um 11:18 Uhr
Hallo an alle!
Ich bin gerade am erstellen einer Homepage und komme nicht weiter, da ich ein Problem habe beim Layout erstellen. Wenn ich in meiner Navigationsliste auf einen Link klicke, dann will der Explorer die hinterlegte Datei downloaden, anstatt zu �ffnen.
Hier mal ein Auszug der index.php Datei:
<?php error_reporting(E_ALL); ini_set('display_errors', 1); $section = array(); $section['news'] = 'news.php'; $section['bars'] = 'bars.php'; $section['restaurants'] = 'restaurants.php'; $section['profil'] = 'profil.php'; $section['contact'] = 'contact.php'; include 'header.html'; echo " <body>\n"; include 'menu.html'; ?> <div id="inhalt"> <?php if (isset($_GET['section'], $section[$_GET['section']])) { include $section[$_GET['section']]; } else { include $section['news']; } ?> </div>
Er �ffnet immer beim Laden der Page, die Seite "news", da diese als else angegeben wurde.
Hier nun ein Auszug meiner menu.html Datei:
<ul id="nav"> <li><a href='index.php?section=news.php'>Startseite</a></li> <li><a href="index.php?section=bars.php">Bars</a></li> <li><a href="index.php?section=restaurants.php">Restaurants</a></li> <li><a href="index.php?section=profil.php">Profil</a></li> <li><a href="index.php?section=contact">Kontakt</a></li> </ul>
Ich hoffe es kann mir jemand behilflich sein. Ich komme einfach nicht weiter
MfG
AbsolutStorm
-
08.04.2012 um 16:30 Uhr
Hallo AbsolutStorm,
schon mal das Tutorial hier versucht?
alice-grafixx.de/PHP-MYSQL-Tutorial/Sicheres-Includen-50
Vielleicht klappt es ja mit dieser Variante eher ...
Liebe Gruesse
Alice... { signatur } ...
[ 1 ]
Seite 1 von 1