Re: inserting null values

2008-12-04 Thread John P
Thanks Charlie, it was a group of radio buttons. did the trick. >that's got nothing to do with your database. you're referencing a form >field (#form.name#) that doesn't exist. >according to the error, you have no form field with the name "name". if >there is one and it's a checkbox o

Re: inserting null values

2008-12-04 Thread Charlie Griefer
that's got nothing to do with your database. you're referencing a form field (#form.name#) that doesn't exist. according to the error, you have no form field with the name "name". if there is one and it's a checkbox or radio group (and none are checked or selected), they don't get passed into the

inserting null values

2008-12-04 Thread John P
I have a form which is throwing the following error upon submit: "Element NAME is undefined in FORM" The field is set to allow nulls in the database. Is there something else I should be doing to allow a null value to be passed? Thanks ~~