Jump to content
xt:Commerce Community Forum

login.html Weiteres Feld bei anmeldung


nanou

Recommended Posts

hi,

ich möchte die Kundenanmeldung durch ein weiteres Feld "Wodurch kennen Sie uns?" erweitern. In der Datenbank habe ich das nötige Feld "customers_kontdurch" angelegt, jedoch wird bei der Anmeldung hier nichts eingetragen.

In der login.html habe ich folgendes hinzugefügt:

<h2>Wie haben Sie uns gefunden ?</h2>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td width="120"></td>
    <td>
        <select name="cust_info[customers_kontdurch]">
                        <option value="Bitte angeben">Bitte angeben</option>
                        <option value="keine Angabe"{if $smarty.post.cust_info.customers_kontdurch == 'keine Angabe'} selected="selected"{/if}>keine Angabe</option>
                        <option value="elotouch.com"{if $smarty.post.cust_info.customers_kontdurch == 'elotouch.com'} selected="selected"{/if}>elotouch.com</option>
                        <option value="industrystock.de"{if $smarty.post.cust_info.customers_kontdurch == 'industrystock.de'} selected="selected"{/if}>industrystock.de</option>
                        <option value="wer-liefert-was"{if $smarty.post.cust_info.customers_kontdurch == 'wer-liefert-was'} selected="selected"{/if}>wer-liefert-was</option>
                        <option value="wlw.de"{if $smarty.post.cust_info.customers_kontdurch == 'wlw.de'} selected="selected"{/if}>wlw.de</option>
                        <option value="firmendatenbank.de"{if $smarty.post.cust_info.customers_kontdurch == 'firmendatenbank.de'} selected="selected"{/if}>firmendatenbank.de</option>
                        <option value="Google Anzeige"{if $smarty.post.cust_info.customers_kontdurch == 'Google Anzeige'} selected="selected"{/if}>Google Anzeige</option>
                        <option value="Google Suche"{if $smarty.post.cust_info.customers_kontdurch == 'Google Suche'} selected="selected"{/if}>Google Suche</option>
                        <option value="Yahoo Suche"{if $smarty.post.cust_info.customers_kontdurch == 'Yahoo Suche'} selected="selected"{/if}>Yahoo Suche</option>
                        <option value="Bing Suche"{if $smarty.post.cust_info.customers_kontdurch == 'Bing Suche'} selected="selected"{/if}>Bing Suche</option>
                        <option value="Andere Suchmaschine"{if $smarty.post.cust_info.customers_kontdurch == 'Andere Suchmaschine'} selected="selected"{/if}>Andere Suchmaschine</option>
                        <option value="Mailing Aktion"{if $smarty.post.cust_info.customers_kontdurch == 'Mailing Aktion'} selected="selected"{/if}>Mailing Aktion</option>
                        <option value="Empfehlung"{if $smarty.post.cust_info.customers_kontdurch == 'Empfehlung'} selected="selected"{/if}>Empfehlung</option>
                        <option value="Quelle nicht aufgefuehrt"{if $smarty.post.cust_info.customers_kontdurch == 'Quelle nicht aufgefuehrt'} selected="selected"{/if}>Quelle nicht aufgef&#252;hrt</option>
                </select> *
        </tr>
        </td>
</table>

Beim Debugging bekomme ich folgende ausgabe (gekürzt)

        [customer_info] => Array
                (
                    [customers_kontdurch] =>
           *********

            [customerData] => Array
                (
                    [customers_kontdurch] => wlw.de

scheint als gäbe es 2 Arrays in der die Daten eingetragen werden, in einem steth es drin, im anderen nicht? Jemand eine Idee wo mein Fehler liegt?


          

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...