Question:
Which is the best Form Processing php script & From where can i download it for free?
Shipu S
2009-06-04 20:40:25 UTC
I need php script for processing the data of the forms filled by the visitors from my website to email.
Five answers:
anonymous
2009-06-04 23:03:33 UTC
Here is a basic form processing:

HTML FORM to EMAIL (Php)



Your index.html file:













Your name:

Your password:

Your email:

... ADD HERE THE REST OF THE FORM ...









(replace by their correct form - stupid editor!)

Your emailfwd.php file:












$name = $_POST['name'];

$pwd = $_POST['pwd'];

$email = $_POST['email'];

... ADD HERE THE COLLECTION OF THE FORM DATA

$to = "youremail@whatever.com";

$headers = "From: ".$email. "\r\n";

$subject = "Submitted application";

$msg = $name . " has sumitted a form!\r\n";

$msg .= "Pwd: " . $pwd . "\r\n";

$msg .= "email address: " . $email . "\r\n";

... ADD HERE THE REST OF THE DATA

mail($to, $subject, $msg, $headers);

echo ("Mail processed.");

?>



?
2016-11-07 00:41:50 UTC
Php Form Processing Script
anonymous
2009-06-04 23:24:11 UTC
Use a server-side script language if your web site allows it. Otherwise, you will have to use a client-side dependent "mailto:" action to get the form info sent to you.



Just use any of the below sites to make the workable form you need:



For making forms:



These are really good online form makers. Just follow the instructions for making it and uploading file(s).



http://www.phpform.org/ (Best-est)

http://www.tele-pro.co.uk/scripts/contact_form/

http://jotform.com/

http://www.thesitewizard.com/

http://www.thepcmanwebsite.com/form_mail.shtml

http://emailmeform.com/



Your current hosting package must allow SMTP ( http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) to work. Otherwise, no email can be sent.



Ron
?
2016-11-07 15:58:00 UTC
umm see if i will bear in mind...i think of it quite is accomplished by utilising looping by using your _POST or _GET aspects then basically basically build your $message var utilising the outcomes. i'm rusty yet i desire that facilitates.
ghjkloi
2009-06-04 20:48:28 UTC
c++ tutorial

http://josutis.com /


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...