hi guys!
I want to download images from websites to my server.
I tried this code but it doesnt work :(
Can anyone help?
--
Yang
<?
$fp1 = fopen("http://ia.imdb.com/media/imdb/01/I/37/20/46.jpg","r");
$fp2 = fopen("pics/temp.jpg","w");
while(!feof($fp 1)) {
$line = fgets($fp1, 1024);
fputs($fp2,$lin e,strlen($line) );
}
fclose($fp1);
fclose($fp2);
?>
I want to download images from websites to my server.
I tried this code but it doesnt work :(
Can anyone help?
--
Yang
<?
$fp1 = fopen("http://ia.imdb.com/media/imdb/01/I/37/20/46.jpg","r");
$fp2 = fopen("pics/temp.jpg","w");
while(!feof($fp 1)) {
$line = fgets($fp1, 1024);
fputs($fp2,$lin e,strlen($line) );
}
fclose($fp1);
fclose($fp2);
?>
Comment