View Single Post
Old 10-22-2008, 05:23 PM  
Donkey Punch
Confirmed User
 
Join Date: Jun 2007
Location: :: PUNCH ::
Posts: 1,260
Quote:
Originally Posted by d-null View Post
even the good tgp scripts do it that way, don't they?
fuck if I know.. I'm nu


heres how my lame ass does it
(cRONjob THis)
PHP Code:
function wwwcopy($link,$file)
{
$fp = @fopen($link,"r");
$cont="";
while(!
feof($fp))
{
$cont.= fread($fp,1024);
}
fclose($fp);

$fp2 = @fopen($file,"wb");
fwrite($fp2,$cont);
fclose($fp2);
}

wwwcopy("yourphptoexecute.php""index.html"); 
__________________
ICQ:407-837-607
Hosting a Problem? Phat Servers = Answer
Donkey Punch is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote