View Single Post
Old 03-11-2004, 07:03 PM  
lurking
Confirmed User
 
Join Date: Jan 2004
Posts: 868
PHP Code:
<?php
//    Create the file output.html and CHMOD to 777

$result fopen("/usr/home/www.domain.com/output.html""w");
    
$source file('http://www.google.com/');
        foreach(
$source as $num => $line)    {
            
fwrite($result$line);
        }
    
fclose($result);
?>
lurking is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote