Mailinglisten-Archive |
$filename = 'http://www.yourserver.com/bild.jpg';
$outfile = 'bild.jpg';
$fd = fopen($filename, "r");
if (!$fd) {
echo "Unable to open remote file.\n";
exit;
}
$size = filesize ($filename);
echo "filesize: ".$size."\n";
$contents = fread ($fd, 20000);
fclose($fd);
echo $contents;
$fp = fopen($outfile, "a+");
fwrite($fp, $contents);
fclose($fp);
Have a nice thread,
Peter
php::bar PHP Wiki - Listenarchive