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 name in the image column of the table when the jpg file 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 along with the data on the same row. 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.