Hi
You can store pics as BLOBs in the DB. I would recommend against it for performance reasons.
You can store the path to the pic easily.
I store the images in a folder called IMAGES and then store the path as a string, "/images/pic1.gif"
Then, when retreiving the image to the page,
strImage = $row["imagepath"];
echo strImage
this places the image on the browser.
hth
Bastien