Hi,
include("get.php?page=5"); doesnt seem to be working because PHP's going to look for a file called "get.php?page=5"
How can I include this in another file then?
thanks
If you want to pass the variable page to the include file this should work.
$page=5; include("get.php");
include 'http://your.host.com/get.php?page=5';
k, thanks