Upload Image from URL using PHP
Upload Image from URL using PHP
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- ********0
something like this does it...
$fn = fopen( $src_img,"w");
while(!feof($f)){
$fc.=fgets($f);
};
fwrite( $fn,$fc);
something like this does it...
$fn = fopen( $src_img,"w");
while(!feof($f)){
$fc.=fgets($f);
};
fwrite( $fn,$fc);