neto061 Posted April 3, 2007 Share Posted April 3, 2007 hi all, i just finished a site for a friend, and used the php id navigation, it works on local but when i uploaded the site i noticed it wasnt working anymore..... Code is as follow: <?php switch($id) { default: include('empresa.php'); break; case "empresa": include('empresa.php'); break; case "sunscope": include('sunscope.php'); break; case "membresia": include('membresia.php'); break; case "contacto": include('contacto.php'); } ?> When you click in any link.. (links are: ?id=sunscope ; ?id=membresia ; ?id=contacto...) the page reloads but dont include the page you're requesting (sunscope;membresia or contact)... Any ideas? i need help badly! thanks in advance.. LINKS: you can check out by yourself the problem @ http://integral-logisticservice.com/main/ notes: both my PC and remote host uses last version of php. Link to comment https://forums.phpfreaks.com/topic/45458-php-id-navigation/ Share on other sites More sharing options...
joquius Posted April 3, 2007 Share Posted April 3, 2007 you have register globals on and the server doesn't? Link to comment https://forums.phpfreaks.com/topic/45458-php-id-navigation/#findComment-220720 Share on other sites More sharing options...
holiks Posted April 3, 2007 Share Posted April 3, 2007 Try changing $id to $_REQUEST['id'] ....or $_GET['id'] Link to comment https://forums.phpfreaks.com/topic/45458-php-id-navigation/#findComment-220721 Share on other sites More sharing options...
neto061 Posted April 3, 2007 Author Share Posted April 3, 2007 Try changing $id to $_REQUEST['id'] ....or $_GET['id'] Worked! thank ya so much! Link to comment https://forums.phpfreaks.com/topic/45458-php-id-navigation/#findComment-220737 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.