db save doesn't seem to be working since i put a email link in on submit. The form submits the email but the record is not recorded on the table for csv export. Please Help
[attachment=0]chronoform.png[/attachment]
Hi fisher12188,
Please drag a Debugger action into the On Submit event, then submit the form and post the debug - including the 'dummy emails' results here.
Note: if you are using the Easy Wizard you can turn on Debug on the Others tab.
Bob
it appears that every user id is 0, at least from what i can see
Hi fisher12188,
I'm not exactly sure what is happening here. Here's my bets interpretation - though it gets a bit technical:
[list]
It looks as though your table is using cd_user_id as the primary key?
As you say, this is always 0 - as it will be unless the form is completed by a logged in user.
Because the primary key is the same as the existing key the Database code tries to update the existing record; but 0 isn't allowed as a value for an auto-incrementing primary key so the update fails.[/list]
if this is correct then my suggestion is that you add a new id column to your table and set that as the auto-incrementing primary key. If there's only test data then you can just create a new table to do this.
Bob
Hi fisher12188 ,
You use PHPMyAdmin (or something similar). Or, as I suggested, you create a new table
Bob