[PHP] switch() for links like ?id=index problem

2001-11-16 Thread Ann Jamison
my code looks something like this: switch($id) { case home: include(home.php); break; } so links can be something like www.url.com?id=home I have also tried to use require instead of include When the desitred link is clicked, the page loads the new link, but also includes my index page taked

[PHP] php switch() problem

2001-11-16 Thread Ann Jamison
I'm using switches to make liunks like www.link.com?go=home code : switch($go) { case home:include (home.php); break; } etc, also tried require stead of include. what i get is the requested liunk loaded on top of the index.php page on the same page, check it out @ www.ribec.airann.com what