Well, you could read the file in to your server, then echo it out like so:
echo join("",file("http://www.somesite.com/page.html"));
There are lots of ways you could do this though. One other I can think of would be to open a socket to the server and manually request it, but this way is just so much easier 🙂
-Josh B