Ive been told to make the column in mysql table as VARCHAR and I have made the length 25 characters
How do I point to the actual image in the column of the table when the image is in a folder called images
is it any of these
/images/awaitingimage.jpg
or
=/images/awaitingimage.jpg
or
images/awaitingimages.jpg
or
=images/awaitingimages.jpg
or something else ?
What code would I use to display the image. Currently I use the following but its not working, is this right or is it the code above that is wrong ?
<?php echo $row_RS_Profiles['image']; ?>
I have had the image on the webpage by doing it in html. so the image is OK.
Cheers