20Nov/06
This blog has been neglected due to the success of Solidshops.com
Copy a picture with php
I never thought stealing , euhm copying a picture was that easy !
$imgfile = “http://www.domain.com/picture.gif”;
$newfile = “C:/webserverfolder/test.gif”;if (!copy($imgfile, $newfile)) {
print (“failed to copy $imgfile…
\n”);
}
Popularity: 1% [?]


