Hi All
Got a small problem, ive set up a members area which is working like a treat but the problem is this:
Before a user logs in i have a nav bar that is present throughout the site, once a user logs in a second nav bar appears but when a user cliicks on a link onthe first nav bar the second disappears. Now the members area is a sepearte folder to the main folder. Only way i can see fixing this problem is if i put all files int he main folder into the members folder, this would mean everytime i make changes to the main folder i have to copy it the members folder/
THIS IS THE CODE I USE TO BRING THE SECOND NAV BAR:
<?
if(session_is_registered('first_name')){
echo"<SCRIPT language=JavaScript src=menu_array_candidate.js type=text/javascript></SCRIPT>";
}
?>
is there any code that i can use to fix this problem?
HELP