Nicht mehr ganz neu hier
Hallo
ich habe testhalber den Bootstrap Application Wizard für meine Website probiert.
Allerdings stehe ich nun vor dem Problem, das ich die Daten per Email übermitteln möchte.
Ich habe folgende Zeile wie in der Doku beschrieben integriert: (der mailer.php sollte die Daten dann verarbeiten und per Email senden, was aber nicht klappt)
Weiß momentan auch nicht wo der Fehler liegt... (Die mailer.php stammt von mir)
Ich bin über jeden Tip dankbar!
Original Demo von Boostrap
http://www.panopta.com/2013/02/06/bootstrap-application-wizard/
Beschreibung submit Funktion
Submitting Data The easiest way to submit data to the wizard is to pass in a submitUrl on construction:
When the wizard reaches its last step and the user clicks the submit button, all of the inputs from all of the wizard cards will be aggregated together and POSTed to your submitUrl.
ich habe testhalber den Bootstrap Application Wizard für meine Website probiert.
Allerdings stehe ich nun vor dem Problem, das ich die Daten per Email übermitteln möchte.
Ich habe folgende Zeile wie in der Doku beschrieben integriert: (der mailer.php sollte die Daten dann verarbeiten und per Email senden, was aber nicht klappt)
Weiß momentan auch nicht wo der Fehler liegt... (Die mailer.php stammt von mir)
Ich bin über jeden Tip dankbar!
Code:
var wizard = $("#some-wizard").wizard({submitUrl: "mailer.php"});
Original Demo von Boostrap
http://www.panopta.com/2013/02/06/bootstrap-application-wizard/
Beschreibung submit Funktion
Submitting Data The easiest way to submit data to the wizard is to pass in a submitUrl on construction:
Code:
var wizard = $("#some-wizard").wizard({submitUrl: "/some_url"});
When the wizard reaches its last step and the user clicks the submit button, all of the inputs from all of the wizard cards will be aggregated together and POSTed to your submitUrl.