[jQuery] Re: PHP Serialize for Checkbox

2007-07-25 Thread Mike Alsup
You need to change the name attribute for those checkbox inputs: The square brackets are needed for PHP to handle the data as an array. Mike On 7/25/07, amircx <[EMAIL PROTECTED]> wrote: hey. i got this : the problem is that once i serialize that form i get blah=1&blah=43 ... i w

[jQuery] Re: PHP Serialize for Checkbox

2007-07-25 Thread David Duymelinck
amircx schreef: hey. i got this : the problem is that once i serialize that form i get blah=1&blah=43 ... i want to get it as array and able to pass it to php in that way?: blah[0]=1&blah[1]=43 (so ill be able to be do foreach ($_POST[blah] as...) anyone can help? you have to c