I have an xml feed that has some image urls provided in it . Each link contains one Images only,
I have to parse this url and download those images in some folder using PHP.
Something like this
while($xmlcontent = mysql_fetch_array($images)){
download_img($xmlcontent["tag"]);
}
function download_img($im_url)
{
}
Thanks in Advance