Hi,
I just have a quick question, i am trying to grab the html of a file on my server to a variable that can then be used in the code later. How do i go about this?? is it even possible?
Thanks for you help
Alex S
The fopen function can open URLs, too. Example:
$fp = fopen("http://myserver.com/myfile.html", "r");
will return a file resource in $fp that you can treat just like any other file.
Good luck!