![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a form that stores information in a table, but I also need it to send an email when a specific question, among the many, is answered with no the question is a simple drop box: select name="safe_access" option value="0"></option option value="yes">Yes</option option value="no">No</option /select and the javascript validation is: //safe_access if ( form.safe_access.selectedIndex == 0 ){ alert ( "Please select whether or not there is safe access to the beach." ); form.safe_access.focus(); return false; } how do I get it to send an email, and still store information in the table when someone answers no? I've done several searches, but they all keep bringing up how to email the form instead of what I am looking for. Thanks |
#3
| |||
| |||
|
|
On Mar 18, 1:22 pm, "canaj... (AT) gmail (DOT) com" <canaj... (AT) gmail (DOT) com> wrote: I have a form that stores information in a table, but I also need it to send an email when a specific question, among the many, is answered with no the question is a simple drop box: select name="safe_access" option value="0"></option option value="yes">Yes</option option value="no">No</option /select and the javascript validation is: //safe_access if ( form.safe_access.selectedIndex == 0 ){ alert ( "Please select whether or not there is safe access to the beach." ); form.safe_access.focus(); return false; } how do I get it to send an email, and still store information in the table when someone answers no? I've done several searches, but they all keep bringing up how to email the form instead of what I am looking for. Thanks Do you intend to store the data in the table AND send email via javascript? Or do you have some server-side script to do it for you? |
#4
| |||
| |||
|
|
On Mar 18, 1:22 pm, "canaj... (AT) gmail (DOT) com" <canaj... (AT) gmail (DOT) com> wrote: I have a form that stores information in a table, but I also need it to send an email when a specific question, among the many, is answered with no the question is a simple drop box: select name="safe_access" option value="0"></option option value="yes">Yes</option option value="no">No</option /select and the javascript validation is: //safe_access if ( form.safe_access.selectedIndex == 0 ){ alert ( "Please select whether or not there is safe access to the beach." ); form.safe_access.focus(); return false; } how do I get it to send an email, and still store information in the table when someone answers no? I've done several searches, but they all keep bringing up how to email the form instead of what I am looking for. Thanks Do you intend to store the data in the table AND send email via javascript? Or do you have some server-side script to do it for you? |
#5
| |||
| |||
|
|
On Mar 18, 9:31 am, GArlington <garling... (AT) tiscali (DOT) co.uk> wrote: On Mar 18, 1:22 pm, "canaj... (AT) gmail (DOT) com" <canaj... (AT) gmail (DOT) com> wrote: I have a form that stores information in a table, but I also need it to send an email when a specific question, among the many, is answered with no the question is a simple drop box: select name="safe_access" option value="0"></option option value="yes">Yes</option option value="no">No</option /select and the javascript validation is: //safe_access if ( form.safe_access.selectedIndex == 0 ){ alert ( "Please select whether or not there is safe access to the beach." ); form.safe_access.focus(); return false; } how do I get it to send an email, and still store information in the table when someone answers no? I've done several searches, but they all keep bringing up how to email the form instead of what I am looking for. Thanks Do you intend to store the data in the table AND send email via javascript? Or do you have some server-side script to do it for you? right now the form action sends the information to a php script which stores the information in the table: form action="thankyou.php" method="post" name="form" id="form" |
#6
| |||
| |||
|
|
On Mar 18, 1:51 pm, "canaj... (AT) gmail (DOT) com" <canaj... (AT) gmail (DOT) com> wrote: On Mar 18, 9:31 am, GArlington <garling... (AT) tiscali (DOT) co.uk> wrote: On Mar 18, 1:22 pm, "canaj... (AT) gmail (DOT) com" <canaj... (AT) gmail (DOT) com> wrote: I have a form that stores information in a table, but I also need it to send an email when a specific question, among the many, is answered with no the question is a simple drop box: select name="safe_access" option value="0"></option option value="yes">Yes</option option value="no">No</option /select and the javascript validation is: //safe_access if ( form.safe_access.selectedIndex == 0 ){ alert ( "Please select whether or not there is safe access to the beach." ); form.safe_access.focus(); return false; } how do I get it to send an email, and still store information in the table when someone answers no? I've done several searches, but they all keep bringing up how to email the form instead of what I am looking for. Thanks Do you intend to store the data in the table AND send email via javascript? Or do you have some server-side script to do it for you? right now the form action sends the information to a php script which stores the information in the table: form action="thankyou.php" method="post" name="form" id="form" This question that may be answered "yes" or "no", and you want to act when the answer is "NO", it is NOT to the tune of "Do you want to subscribe to our newsletter (and other unsolicited mail)?" Is it? |
![]() |
| Thread Tools | |
| Display Modes | |
| |