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* 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. Link to comment https://forums.phpfreaks.com/topic/2071-incude-question/#findComment-6768 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.