How to make form in php step by step guide ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to make form in php step by step guide ?

please help me dear friends...like php form mailer

14th Jan 2017, 1:52 PM
Harsh Raval
23 Answers
+ 10
<?php echo "<form method='get' action='$data' />" ?> (what exactly do you want??)
14th Jan 2017, 1:55 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 10
<?php if(isset($_POST['submit'])){ $to = "email@example.com"; // this is your Email address $from = $_POST['email']; // this is the sender's Email address $first_name = $_POST['first_name']; $last_name = $_POST['last_name']; $subject = "Form submission"; $subject2 = "Copy of your form submission"; $message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message']; $message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message']; $headers = "From:" . $from; $headers2 = "From:" . $to; mail($to,$subject,$message,$headers); mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly."; // You can also use header('Location: thank_you.php'); to redirect to another page. } ?> <!DOCTYPE html> <head> <title>Form submission</title> </head> <body> <form action="" method="post"> First Name: <input type="text" name="first_name"><br> Last Name: <input type="text" name="last_name"><br> Email: <input type="text" name="email"><br> Message:<br><textarea rows="5" name="message" cols="30"></textarea><br> <input type="submit" name="submit" value="Submit"> </form> </body> </html>
14th Jan 2017, 2:03 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 9
Yes, it's easier with HTML (and maybe JS……)
14th Jan 2017, 2:08 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 9
Really, what made you think he's from Poland?? ^_^
14th Jan 2017, 2:21 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 9
^_^
14th Jan 2017, 2:23 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 8
POST method is more secure than GET (no guarantees, packet-sniffing can sniff everything) (use https protocol for security)
14th Jan 2017, 2:11 PM
Valen.H. ~
Valen.H. ~ - avatar
+ 5
@Lentin Yes, I'm from Poland
14th Jan 2017, 2:23 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 4
You can do it in pure HTML with a href and mailto:something@example.com
14th Jan 2017, 2:07 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 4
No, what makes you think I'm Polish
14th Jan 2017, 2:17 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 4
NO IM NOT
14th Jan 2017, 2:20 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 3
I never know if this works but you can try, HTML : <input type=text id=email oninput="setAttr()"> <a>Send email</a> JS : function setAttr() { document.getElementsByTagName("a")[0].setAttribute("href", "mailto:" + document.getElementById("email").value) }
14th Jan 2017, 2:15 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 2
sorry
14th Jan 2017, 2:20 PM
Harsh Raval
+ 2
cause of there profile picture and using Xd word
14th Jan 2017, 2:23 PM
Harsh Raval
+ 1
php form mailer
14th Jan 2017, 1:56 PM
Harsh Raval
+ 1
yes something like that it's not working
14th Jan 2017, 2:01 PM
Harsh Raval
+ 1
What is the code to send an email in PHP?
14th Jan 2017, 2:01 PM
Harsh Raval
+ 1
okay after XAMPP
14th Jan 2017, 2:05 PM
Harsh Raval
+ 1
dear friends does it will be secure
14th Jan 2017, 2:08 PM
Harsh Raval
+ 1
yes I have XAMPP
14th Jan 2017, 2:12 PM
Harsh Raval