On Sat, 11 Jul 2009 16:50:48 -0000, "arvindsri123" <arvindsri123@xxxxxxxxx> wrote: >Hi, > >Thanks for reply... > >When i will make column in table for images, normally i will make 3 column for 3 images but when i will add more images field in forms how i can create new column for new images, is there anything that column can create automatically when i upload more than 3 images? b-cz user can upload any number of images. > >I am giving link again here >http://www.wowapic.com/add_image.php > >please click on "Upload more pictures? [Click here]" > >Thanks, >Arshi > Having a fixed number of fields to handle a varialble number of entries shows a problem with database normalization. Instead of having n columns for images, you should have a seperate table for images, with each record of images linking back with the primary key of the original record. Richard Damon