View Single Post
Old 08-18-2003, 08:21 AM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
no. maybe you could just run everything from the index page though.

www.yourdomain.com/?page=customer
www.yourdomain.com/?page=home
www.yourdomain.com/?page=login
PHP Code:
<?
switch ($_GET['page'])
{
  case 
"customer":
  {
    include(
"includes/customer.php");
    break;
  }
  case 
"login":
  {
    include(
"includes/login.php");
    break:
  }
  default:
  {
    include(
"includes/home.php");
  }
}
?>
your pages will still be defined by the page var though.

you could make it something that isn't so obious .. like

www.yourdomain.com/?a6=i35312095645

but then again, that might be the same as naming your page i35312095645.php

why exactly are you trying to accomplish this?
__________________
Mike
sde is offline   Reply With Quote