How do I upload multiple images to d-base through a single page?
I can upload a single image with a form to my MySql database with no problem. It sends the file name to the database then stores the image in an image file.
But now I want to upload multiple images in the same way from the same PHP page. Each multiple upload needs to be stored to a single record (designated user that's logged in). I have a field for each image in the database.
This may give you a better idea of what the database looks like:
| Username | ID | image1 | image2 | image3 |
|---|---|---|---|---|
| scmeeker | 5 | dotty.jpg | hello.jpg | kitty.jpg |
| jdmeeker | 7 |
So now I want to upload multiple images for each image field. When it works correctly, it should send the name of the image file to the proper field and then send the image to the image folder. I've tried it several ways with no luck at all.
Any one have any ideas???
Thanks!
