why isn't working to display in a .php, text retrieved from a database together with an image (.jpg)? the text is retrieved after an ID and I want an image to appear near the text. I used INCLUDE ("x.jpg") statement, and all I got is a page with the information retrieved from the database, surrounded by a lot of shit. no image. what's the answer?
thanx
metra
The 'include' tag is not going to show the image for you...that is to include a file into the file you are showing, not an image.
You need to add an <img xxx> tag with a src='your image'
See if that works for you.
-- Jason