Errors (noobie needs help! :( )
hi there! i am trying to pass some values through multiple pages here
and i am running into problems with code Clam heelped me with :P
PHP Code:
<?PHP
switch ($_GET['navigation']) {
case 'one':
$file = 'menu1.php';
break;
case 'two':
$file = 'menu2.php';
break;
case 'three':
$file = 'menu3.php';
break;
case 'four':
$file = 'menu4.php';
break;
default:
$file = 'menu1.php';
}
?>
it's saying something about T_CASE and unexpected "}"
sorry i'm so so new to PHP, and yes! i did buy a couple books
my links are as follows:
<a href="testfile.php?navmenu=one">FIRST CHOICE</a> <br />
<a href="testfile.php?navmenu=two">SECOND CHOICE</a> <br />
etc
thanks in advance!
jamie