What is the easiest way to get a http page and save it to a local file(without using wget)?
I want to use php as template language, and harvest the resulting file from the .php html output.
kind of like fopen("http://localhost/boo.php?id=1", "r") and then write to a local file called file001.txt.
Any input will be appreciated.