Forum Moderators: coopster
Any Ideas?
<? $e = `wget $_GET[url]`; echo '$_GET[url] retrieved!'; ?>
Of course, you'd need to add all kinds of security checks etc...but i hope you get the idea..
$handle = fopen("temp\\test.pdf", "wb"); if (fwrite($handle, file_get_contents($URL)) === FALSE) { echo "Cannot write to file ($filename)"; exit; } fclose($handle);