I need to save an image from a PHP URL to my PC. Let\'s say I have a page, http://example.com/image.php, holding a single \"flower\" image, nothing else. How ca
http://example.com/image.php
$data = file_get_contents('http://example.com/image.php'); $img = imagecreatefromstring($data); imagepng($img, 'test.png');