WTF-60k for php file transfer
WTF-60k for php file transfer
Out of context: Reply #7
- Started
- Last post
- 8 Responses
- monNom0
write to a static HTML file on a regular basis (hourly?) so as not to run up the bandwidth expense for each hit.
something like this:
$htmlfile = "/www/iframe.htm";
$result = -yourOutput-;$htmlfp = fopen($htmlfile,"w+");
fputs($htmlfp,$result);
fclose($htmlfp);might work.
(copy and paste code... I dunno if it's valid)