PHP Code:
<?php

$site 
fopen("http://www.topsitelists.com/world/toppalaces/topsites.html""r") or die("<html>\n<body>\nError Including Website: Top Palace Lists<BR>Please Contact The Admin!\n</body>\n</html>");
    while(
$site){
        
$page fgets($site);
        echo 
$page;
    }
@
fclose($site);

?>
This is the code i am using to get an external web-page,

Anyhow:

Code:
Fatal error: Maximum execution time of 30 seconds exceeded in e:\servers\root\websoftware\toppalaces\index.php on line 5
I am getting this error just before the </body> </html> is added to the page, so,, is there an easier & Faster way to show an external page?

& If that is the best that can b done, What time do you ppl suggest i raise the time limit to?

: Ta