|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Print images from mysql
Hi,
i have a little problem, my members on signup they can upload an images on what ever they want to a mysql server. My problem are that i cant print the image on my members information site. Please help me with the code Thanx |
|
#2
|
|||
|
|||
|
RE: Print images from mysql
don't store the image in the db...store the path/name of the image in text format and use that variable to show the images...
simplifies image handling, no db penalties and its how dbs store lob anyway... to show the image, simply retreive the name Code:
$img=$rows['image_name']; echo "<img src="$img">"; |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Database Help > Print images from mysql |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|