Nieuw lid |
|
Beste mensen,
Ik ben sindskort bezig met een site voor een kennis van me.
Ik heb nu een prachtig include scriptje dat werkt heel goed en mooi.
<?PHP
if(isset($_GET['pagina'])) {
$pagina = $_GET['pagina'];
switch($pagina) {
case "home": include("content.php"); break;
case "about": include("about.php"); break;
case "bullmastiff": include("bullmastiff_start.php"); break;
case "foto": include("foto.php"); break;
case "fransebulldog": include("franse_bulldog_start.php"); break;
case "contact": include("contact.php"); break;
case "contact": include("bullmastiff_pups.php"); break;
}
}
?>
<?PHP if(isset($_GET['pagina'])) { $pagina = $_GET['pagina']; switch($pagina) { case "home": include("content.php"); break; case "about": include("about.php"); break; case "bullmastiff": include("bullmastiff_start.php"); break; case "foto": include("foto.php"); break; case "fransebulldog": include("franse_bulldog_start.php"); break; case "contact": include("contact.php"); break; case "contact": include("bullmastiff_pups.php"); break; } } ?>
maar nu komt het probleem, stel ik heb een link in de content zelf. Als ik daar op zou klikken moet hij natuurlijk in dezelfde div het weergeven. Dit wil hij dus niet. Weet iemand hier meer van of kan iemand me even helpen. www.vantrondeserf.nl zie je het voorbeeld onder bullmastiff.
Bijvoorbaat dank,
Edwin
|