Hi, I am fairly new to this but have a question. I have images already loaded in a file and want to be able to pull them up when I retrieve infromation.
Example: Stock Number: 134523 Year: 2003 Make : Chevrolet Model: Suburban Description: Black with tan leather, loaded, etc. Image(http://www.classicfleet.com/images/suburban3.jpg)
Is this way possible or is their a better way?
I am not sure what you are asking, are you looking to store images in a DB as a Blob?
You have images in a file? As what?
if you are querying a dbase, add a imgsrc column and put the images path as the value, then when you query the db, and print your output add something like
echo "picture: <img src=".$row['imgsrc']."><br>";