Hi,
I'd like to access a page.. let's say: http://www.whatever.com/what.php3?section=1&page=something.tmp by using a php script.. so that the page is accessed exactly as if it was accessed by a browser. How can I do this using php? Do I have to use an fopen or do I have to use a socket connection??
In the what.php3 make a check that says
if ( $page == "whatver" ) { include "includethfile.inc.php3"; }
Inside that included file, you can make checks on the "section" and whatever. It's as simple as that.
From php manual : fopen -- Open file or URL and return a descriptor to the open file.