I have a simply form in chronoforms that just takes a name, email, date and details from a customer and sends an email. I also have the database save option on and set up, but it is not saving the records at all.
I have been though the article below which describes what to check for and everything looks okay (url below), but my form is not saving any data.
http://www.chronoengine.com/faqs/2619-my-form-data-isnt-saving-to-the-database-correctly
I created the table using the create table button in chronoforms and simply changed the ID to cf_id , uniq_id to cf_uiniq_id, user_id to cf_user_id and removed teh enable flag for the submit button.
My form has the following fields in :
1 : Text field called name
2 : Text field called email
4 : Text field called pdate (for purchase date)
5 : Text field called details
6: Submit button
7 : Recaptcha field
The HTML for the form is as follows :
Cheers
I have been though the article below which describes what to check for and everything looks okay (url below), but my form is not saving any data.
http://www.chronoengine.com/faqs/2619-my-form-data-isnt-saving-to-the-database-correctly
I created the table using the create table button in chronoforms and simply changed the ID to cf_id , uniq_id to cf_uiniq_id, user_id to cf_user_id and removed teh enable flag for the submit button.
My form has the following fields in :
1 : Text field called name
2 : Text field called email
4 : Text field called pdate (for purchase date)
5 : Text field called details
6: Submit button
7 : Recaptcha field
The HTML for the form is as follows :
<div class="form-group gcore-form-row" id="form-row-name"><label for="name" class="control-label gcore-label-left">Name</label>
<div class="gcore-input gcore-display-table" id="fin-name"><input name="name" id="name" value="" placeholder="" maxlength="100" size="50" class="input-lg validate['required','alphanum'] form-control A" title="" style="" data-inputmask="" data-load-state="" data-tooltip="Enter your name here" type="text" /></div></div><div class="form-group gcore-form-row" id="form-row-email"><label for="email" class="control-label gcore-label-left">Email</label>
<div class="gcore-input gcore-display-table" id="fin-email"><input name="email" id="email" value="" placeholder="" maxlength="100" size="50" class="input-lg validate['required','email'] form-control A" title="" style="" data-inputmask="" data-load-state="" data-tooltip="Enter your email address here" type="text" /></div></div><div class="form-group gcore-form-row" id="form-row-pdate"><label for="pdate" class="control-label gcore-label-left">Purchase Date</label>
<div class="gcore-input gcore-display-table" id="fin-pdate"><input name="pdate" id="pdate" value="" data-gdatetimepicker-format="d-m-Y" placeholder="" size="50" class="input-lg validate['required'] form-control A" title="" style="" data-load-state="" data-tooltip="Select the date of purchase" type="text" data-fieldtype="gdatetimepicker" data-start_date="01-01-2015" data-start_view="d" /></div></div><div class="form-group gcore-form-row" id="form-row-details"><label for="details" class="control-label gcore-label-left">Details</label>
<div class="gcore-input gcore-display-table" id="fin-details"><textarea name="details" id="details" placeholder="" rows="3" cols="50" class="input-lg validate['required'] form-control A" title="" style="" data-wysiwyg="0" data-load-state="" data-tooltip="Enter the details of the issue here"></textarea></div></div><div class="form-group gcore-form-row" id="form-row-recaptcha"><label for="recaptcha" class="control-label gcore-label-left">Human Check</label>
<div class="gcore-input gcore-display-table" id="fin-recaptcha">{ReCaptcha}</div></div><div class="form-group gcore-form-row" id="form-row-submit"><div class="gcore-input gcore-display-table" id="fin-submit"><input name="submit" id="submit" type="submit" value="Submit Request" class="btn btn-primary form-control A" style="" data-load-state="" /></div></div>
Cheers