PHP multiple entry form script

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
whamsicore
Forum Newbie
Posts: 8
Joined: Thu Sep 30, 2010 4:18 pm

PHP multiple entry form script

Post by whamsicore »

Hi guys,

I'm looking for a PHP script setup where I can fill in multiple entries (corresponding to database record to be saved), have a save button which will save the entry individually, as well as a 'save all' button which will save all the form entries all at once (to MySQL database naturally). Anybody can point me to some existing code or give me some pointers would be great. If I have to write the whole thing I figure I may use ajax to do the save on individual entries, and POST back the inputs to the current page for the 'save all' function. Sounds good? (But it would be great if I can find existing code, don't want to reinvent the wheel as they say)

P.S:Looks are not critical at this point but if anyone could point me to a cool CSS styling scheme it will be mucho appreciated as well.
JakeJ
Forum Regular
Posts: 675
Joined: Thu Dec 10, 2009 6:27 pm

Re: PHP multiple entry form script

Post by JakeJ »

Using AJAX is probably a good idea. But if you're going to do it for the individual entries, do it for every form. I use jQuery and the form plug in, it works great.
whamsicore
Forum Newbie
Posts: 8
Joined: Thu Sep 30, 2010 4:18 pm

Re: PHP multiple entry form script

Post by whamsicore »

Thanks for the reply I will look into Jquery:P
Post Reply