random FIRE Posted November 30, 2004 Share Posted November 30, 2004 ok so right now i got basic code so when i go to content.php itll show index and when i go to say content.php?cID=download, itll show download. But how can i make it go to pages with .php extensions without showing it in the URL? right now to have extensions on my file it must be in the URL, EX: content.php?cID=download.php. <?php if(empty($cID)){ include 'index'; }else{ if(file_exists($cID)){ include $cID; }else{ echo 'Page Not Found'; } } ?> i was thinking something like include ("$cID.php") but where would i integrate it into the code? sorry for my poor php skills. look and test EDIT: sorry for the typo in the title. include* Quote Link to comment https://forums.phpfreaks.com/topic/2071-incude-question/ Share on other sites More sharing options...
random FIRE Posted December 1, 2004 Author Share Posted December 1, 2004 Never mind, I got it to work. Quote Link to comment https://forums.phpfreaks.com/topic/2071-incude-question/#findComment-6768 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.