Is it possible to generate a page which consists of multiple urls?
The trick is that the urls are not files but the result of an ASP server so fopen cannot be used.
Gert-Jan
If I understand corretcly you need to fetch other pages after they are rendered by their server. I would use file() for instance if you wanted to display the contents of yahoo.com on your page, you could do this: $file = file("http://www.yahoo.com"); while (list ($key, $val) = each ($file)) { print $val; }