hi again!
well, i'm running into more problems 
i'm trying to pass the navigation choice through the entire site.
although, when I go beyond the 2nd page, the nav goes to default.
heres what i got
PHP Code:
<?PHP
switch ($_GET['menu']) {
case 'emp':
$file = 'navigation/emp.php';
$content = 'content/emp_content.php';
$news = 'content/emp_news.php';
break;
case 'pcp':
$file = 'navigation/pcp.php';
$content = 'content/pcp_content.php';
$news = 'content/pcp_news.php';
break;
case 'omp':
$file = 'navigation/omp.php';
$content = 'content/omp_content.php';
$news = 'content/omp_news.php';
break;
case 'epp':
$file = 'navigation/epp.php';
$content = 'content/epp_content.php';
$news = 'content/epp_news.php';
break;
default:
$file = 'navigation/emp.php';
$content = 'content/emp_content.php';
$news = 'content/emp_news.php';
break;
}
?>
and my link contains
PHP Code:
<li> <?PHP Echo "<a class="hide" href=resources.php?menu=". $_GET['menu'] .">Resources and Links</a>"; ?> </li>
susposedly this will retain the value initially selected?
heres my error:
Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in /home/nitionde/public_html/cyanokit_www/navigation/main_nav.php on line 60
(that is line 60)
thanks in advance!
Bookmarks