I've been playing with this for two days and am wondering if there's a way to retrieve and display the images in a browser using
only php or is it necessary to use a graphics library like GD?


The approach that an overwhelming majority of PHP developers (and other developers for that matter) use is to simply store the image on the file system. If these images are part of a web application you can then store a reference to the image in the database (ie: the filename only). Then all you need to do is to query the database and use the result in an <img src='...'> nothing could be simpler.



--
Raditha Dissanayake.
------------------------------------------------------------------------
http://www.radinks.com/sftp/         | http://www.raditha.com/megaupload
Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader
Graphical User Inteface. Just 128 KB | with progress bar.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to