So, I have everything else working correctly in my sql_query, but I cannot get my images to show up correctly. They just show up with blank boxes with red X's in them - Ususal occurance when the link is broken - I have been pulling my hair out trying to figure out this BS!!
My Setup - PHP with MYSQL backend.
It connects correctly -
Displays text fine
THE PICTURES WONT SHOW - I tryed to use a <img> tag to point to the $storedfilename but it just displays the text and nothing else -
I hope im clear -
Thanks for the help!
-Charlie
How do I get my images to show in the tables
Moderator: General Moderators
-
Paddy
- Forum Contributor
- Posts: 244
- Joined: Wed Jun 11, 2003 8:16 pm
- Location: Hobart, Tas, Aussie
- Contact:
Hmmm...you should post code when asking a question like this. Makes it easier for us to help. But I will try anyway. 
You img tags should look like this
Is that what it looks like? This will only work if the image is in the same directory as the file.
You img tags should look like this
Code: Select all
<?php
<img src="<?php echo($storedfilename); ?>">
?>