Page 1 of 1
Anyone know how to send HTML multipage form with PHP script
Posted: Mon May 12, 2014 6:05 pm
by woohoo14
Have been trying to send form instance (questionsform.html, which is a multipage form, dozens of data fields) by a PHP script
-is there any standard code to use which will capture form content & forward by email?
Re: Anyone know how to send HTML multipage form with PHP scr
Posted: Mon May 12, 2014 7:06 pm
by requinix
$_POST has the data. Do whatever you want to do with it so that it is readable, then email it using the built-in mail() or a library like SwiftMailer or PHPMailer.
Re: Anyone know how to send HTML multipage form with PHP scr
Posted: Mon May 12, 2014 7:19 pm
by woohoo14
Thanks requinix, much appreciated -by any chance is there sample code for this available (using PHPmailer)?
Re: Anyone know how to send HTML multipage form with PHP scr
Posted: Mon May 12, 2014 10:18 pm
by requinix
Take a look at
their home on Github: they have a number of examples there, not to mention the documentation.
Re: Anyone know how to send HTML multipage form with PHP scr
Posted: Tue May 13, 2014 12:08 am
by woohoo14
Awesome, thanks!