Here is what I am trying to do, so maybe someone can help me out here.
I am building a site for a virtual racing team. I have images of the drivers cars which are not placed in MySQL, they are just in the images folder of the site. I have the drivers information located in MySQL. What I need to do is have those images placed to certain drivers. How would I accomplish this in both MySQL and PHP?
relates to the rest of the driver info....then just call the image with
echo "<img src=\"$row['myimage']\">;
or add the path to the src code
echo "<img src=\"\/images\/$row['myimage']\">;
hth