Onbekend |
|
Hieronder in het scriptje staat ergens een fout. Ik vind hem niet:
<?php
if(isset($_GET['p']))
{
switch($_GET['p'])
{
case 'begin':
$sInc = 'begin.php';
break;
case 'html':
$sInc = 'thtml.php';
break;
default:
$sInc = 'begin.php';
break;
}
include_once $sInc;
}
else
{
include_once 'begin.php';
}
?>
<?php { switch($_GET['p']) { case 'begin': $sInc = 'begin.php'; break; case 'html': $sInc = 'thtml.php'; break; default: $sInc = 'begin.php'; break; } include_once $sInc; } else { include_once 'begin.php'; } ?>
Opgelost ik misde een '
|