Grafische gevorderde |
|
beste webmasters,
hoe maak ik in dit scriptje (zie onderstaand in codeblok).
Dat hij gewoon opent met de home pagina,
Want nu staat er niks pas als ik klik op home verschijnt het er.
Maar vanaf ik de website intik, en bezoek moet de homepagina laden.
Dus dat ie aanwezig is, hoe doe ik dit in onderstaand scriptje ?
<?php
if (isset($_GET['pagina']))
{
if($_GET['pagina']=='home')
{
include('home.php');
}
elseif($_GET['pagina']=='waarom')
{
include('waarom.php');
}
elseif($_GET['pagina']=='contact')
{
include('contact.php');
}
elseif($_GET['pagina']=='hosting')
{
include('hosting.php');
}
elseif($_GET['pagina']=='offerte')
{
include('offerte/choose.php');
}
}
?>
<?php if (isset($_GET['pagina'])) { if($_GET['pagina']=='home') { include('home.php'); } elseif($_GET['pagina']=='waarom') { include('waarom.php'); } elseif($_GET['pagina']=='contact') { include('contact.php'); } elseif($_GET['pagina']=='hosting') { include('hosting.php'); } elseif($_GET['pagina']=='offerte') { include('offerte/choose.php'); } } ?>
Groetjes Wim
|