Possible to store the HTML of an external site in a variable?
Such as...
$yahoo_finance_html = getpage("http://finance.yahoo.com");
Then you can use that html to extract certain things like stock quotes from the Yahoo! Finance site.
If you can't do it with only PHP, is there any other way to do it? Like using AJAX or something? Thank you.