Quote:
Originally Posted by Nookster
http://us2.php.net/include/
Look under "Example 16.7. include() through HTTP"
when using include() and $_GET you must pull the included file with the complete url. And note that include with $_GET doesn't work with all configurations.
|
don't do that, that's lame, and will just unnecessarily slow the page down...
do something like this:
$id='xxx';
include("/path/to/file.php");
then inside file.php just use $id wherever needed...