|
well...
I might be wrong, or didnt understand your problem, btut:
index.php?mode=register
that assumes that you'll handle that GET variable inside the php.
So....
if($_GET['mode'] hahahaha "register") {
header("location: youraddress/register.php
}
or if($_GET['mode']) {
[from here you can go either by testing every condition by if, or case)
if($_GET['mode'] hahahaha "register") header() // see above
or
$whatever = $_GET['mode'];
switch($whatever) {
case "register":
header()../see above
break;
case "whatever"...
and so on...
hope that helped a bit
__________________
|