NAVIGATION
This shows you the differences between two versions of the page.
|
english:phpwcms-system:article:contentparts:form:special-applications:php-script-and-function:field-transfer-v2 [2010/07/18 16:45] Claus |
english:phpwcms-system:article:contentparts:form:special-applications:php-script-and-function:field-transfer-v2 [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 6: | Line 6: | ||
| Advantages over V1: \\ | Advantages over V1: \\ | ||
| - | The complete case of an error in the select menu "Ortsauswahl" will be covered. Even if a second incorrect input is following a first one, the focus will remain in the drop down box previously selected. \\ | + | * The complete case of an error in the select menu "Ortsauswahl" will be covered. Even if a second incorrect input is following a first one, the focus will remain in the drop down box previously selected. \\ |
| - | The e-mail addresses are included in encoded form to give SPAM robots no selection possibility. | + | * The e-mail addresses are included in encoded form to give SPAM robots no selection possibility. |
| + | <note> | ||
| + | Since version V1.4.7 R414 it is no longer necessary to apply in relation to "non-encrypted e-mail addresses" the method shown here. The e-mail addresses are encrypted from this version in the value field in FE. | ||
| + | </note> | ||
| \\ | \\ | ||
| Line 84: | Line 87: | ||
| if( isset($_POST['ort']) AND isset($_POST['ort_email']) ) { ... | if( isset($_POST['ort']) AND isset($_POST['ort_email']) ) { ... | ||
| </code> | </code> | ||
| - | So kann das Formular zumindest rudimentär identifiziert werden. Dies kann bei mehreren Formularen in der Site wichtig sein. | + | This way you can identify the form basically. It will be possibly helpful when more than one form has to be used. |
| - | Der letzte Schritt ist die Filterung des Ortes und Zuweisung zur Variablen "$_POST['ort']" und "$_POST['email']". \\ | + | The only step missing is filtering the "place" and assigning it to the variable "$_POST['ort']" und "$_POST['email']". \\ |
| <code php |h form_script_email_to_location_v2.php |h> | <code php |h form_script_email_to_location_v2.php |h> | ||