Quote:
Originally Posted by d-null
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");