I already have a n existing database *.mdb, now I want to store all of the images from the c drive as the pointer in database to upload to the website. How I can do that?
thanks Jackie Vo
I would strongly recommend not storing images in a database. It is not the best method. The best thing to do is store the paths to images in your database.
if you store the path to the images read from C drive, how do you display these images in web? I know that we can read the text from the C drive and display in the web, but I don't know how to do this with pictures, binary data. Thanks jackie