How Can I download images to another folder using PHP?
Can anyone help me in downloading the images.
How Can I download images to another folder using PHP?
Can anyone help me in downloading the images.
You can only access the files in the localhost (xampp\htdocs..) using PHP. Other files in the system can't be accessed.
You can read content of URL using file_get_contents()
method and then save the data received as image using file_put_contents()
$content = file_get_contents('http://www.mysql.com/abc.png');
file_put_contents('/image/abc.png', $content);