Jump to content

incude question


Recommended Posts

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. :Plook 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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.