Well, I was hoping to use PHP's 'include' function to send the contents of another webpage to a variable.
I wanted to do something like this:
$contents = `include("http://www.website.com/page.html")`;
What would be a good method of doing such? Unfortunately, the 'file' function only seems to work with local documents.