[Solved] Downloading an image to client side using PHP [closed]

No. PHP doesn’t download to clients. The client (i.e. a browser) can download from a server, and the server may use PHP to send the data. [edit] To send a single image, you must set the right header, to specifiy the content type of the image. See http://www.ehow.com/how_7280601_send-php-image-file.html To send multiple images, you could send … Read more