Hi,
I've searched the board over but to no avail. I have pictures in a folder called "labels". If you echo the image name in PHP it says "this & that.jpeg". It also shows that way as the image name in mysql and on the server itself. (w/o the quotes)
When I echo a table while pointing to this file in a cell, the picture won't show and the properties say its pointing to http://mywebsite/labels/this%20&%20that. Heres my latest attempt:
$genrepic = rawurldecode($row['genrepic']);
And the line in my table is like this:
echo "<td width=\"12%\" bgcolor=\"131313\" class=\"type\">\"<img src=\"labels/$genrepic\" width=\"25\" height=\"88\">\"</td>"
A appreciate any help. Thanks.