OK I have a PHP page where I want to include data from an external server. The php documentation says that this will work:
PHP Code:
include ("http://gah.stanford.edu/teams/HazteK_Software.html"); 
But when I try it, I get a blank page. I want it to display my stats for Genome@Home, but this is not working. I don't want to have to use something like inline frames because it's not very compatible with anything other than IE, and I want to keep away from them anyway. I also don't want to link to an external page because I want it to look like it's part of my site.

Thanks.