I just made my website to use php navigation system but one problem occured:
In index page i got this line in content area:
<?php
switch($_GET['id']) { default: include('main.php');
break;
case 'submit': include('submit.php');
break;
case "forum": include('index.php');
break;
case "search": include('search.php');
break;
?>
QUESTION: I got this one script which use this kind of action:
<form method=GET action="$PHP_SELF?subaction=search">
How can i make it work correct in this navigation system?
Thanks for all help!
