forked from GiacomoLaw/web-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_form_send.php
More file actions
83 lines (69 loc) · 2.69 KB
/
html_form_send.php
File metadata and controls
83 lines (69 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
if(isset($_POST['email'])) {
// Change this to your email address.
$email_to = "thenerdystudent@gmail.com";
$email_subject = "Form subission detected";
function died($error) {
//echo '<script type="text/javascript">alert("Sorry this is a very big file .. max file size is '.$maxSize.' Bytes = 1 MB");</script>';
// echo "Sorry, but errors occured when you filled out the form. ";
// echo "These errors appear below.<br /><br />";
// echo $error."<br /><br />";
// echo "Please correct these errors, and then submit again..<br /><br />";
echo '<script type="text/javascript">
alert("Sorry, but errors occured:- '.$error.' please correct these errors.");
window.history.back();
</script>';
//sleep(10);
//header('Location: ' . $_SERVER["HTTP_REFERER"] );
die();
}
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['comments'])) {
died('There appears to be a problem with what you submitted.');
}
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$email_from = $_POST['email'];
$comments = $_POST['comments'];
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid. ';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid. ';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid. ';
}
if(strlen($comments) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid. ';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Details are below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
<script type="text/javascript">
alert("Thank you for contacting us! We'll be in touch soon!");
window.history.go(-2);
</script>;
<?php
}
die();
?>