Hi,
After creating a form to enable users to submit details of their projects to an online database, my crew of beta testers said they would like an option to hide the email address they submit with the project details. None too tricky, i thought - ut i'm stuck at the first hurdle!
i added the following code to the form:
And then added a field called "HideEmail" to the table where the data is stored.
However, whether the checkbox is checked or not, nothing alters in the "HideEmail" field in the table.
I'm sure i;ve missed something obvious... any ideas?
Thanks!
After creating a form to enable users to submit details of their projects to an online database, my crew of beta testers said they would like an option to hide the email address they submit with the project details. None too tricky, i thought - ut i'm stuck at the first hurdle!
i added the following code to the form:
<div class="form_item">
<div class="form_element cf_checkbox">
<label class="cf_label" style="display: none;">Hide email?</label>
<div class="float_left">
<input value="Hide email?" title="" class="radio" id="check00" name="HideEmail" type="checkbox" />
<label for="check00" class="check_label">Hide email?</label>
And then added a field called "HideEmail" to the table where the data is stored.
However, whether the checkbox is checked or not, nothing alters in the "HideEmail" field in the table.
I'm sure i;ve missed something obvious... any ideas?
Thanks!