Hi
I'm using j1.7 and Chronoform 4.0 RC2.0
The db field is: membership_type and I'm seeing proper URL encoded values in the POST ( membership_type%5B%5D=1&membership_type%5B%5D=3&membership_type%5B%5D=4&membership_amount= )
However, as in previous versions, I can't see any place where field are listed to use in the insert statement. I've also tried a few things found in other posts (e.g. disable/enable DB save, etc...)
Everything else is saving to the db, just not the dang checkboxes....
Any ideas....?
Thanks
-Kevin
I'm using j1.7 and Chronoform 4.0 RC2.0
The db field is: membership_type and I'm seeing proper URL encoded values in the POST ( membership_type%5B%5D=1&membership_type%5B%5D=3&membership_type%5B%5D=4&membership_amount= )
However, as in previous versions, I can't see any place where field are listed to use in the insert statement. I've also tried a few things found in other posts (e.g. disable/enable DB save, etc...)
Everything else is saving to the db, just not the dang checkboxes....
Any ideas....?
Thanks
-Kevin
Hi Kevin,
The fact that you are seeing URL Encoded values suggests that they aren't in the $_POST array but in the $_GET array instead? Is the Form Method set to Post or to Get?
If I decode them I can see that they are array results
Try dragging in a Handle Arrays action to the OnSubmit Event and move ut up before the DB Save action.
Bob
The fact that you are seeing URL Encoded values suggests that they aren't in the $_POST array but in the $_GET array instead? Is the Form Method set to Post or to Get?
If I decode them I can see that they are array results
membership_type[]=1&membership_type[]=3&membership_type[]=4&membership_amount=
.Try dragging in a Handle Arrays action to the OnSubmit Event and move ut up before the DB Save action.
Bob
This topic is locked and no more replies can be posted.