<?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); ?>