8 $GLOBALS[
'ct_recipient'] =
'YOU@EXAMPLE.COM';
9 $GLOBALS[
'ct_msg_subject'] =
'Securimage Test Contact Form';
12 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13 <html xmlns=
"http://www.w3.org/1999/xhtml">
15 <meta http-equiv=
"Content-type" content=
"text/html;charset=UTF-8" />
17 <style type=
"text/css">
19 .error { color: #f00; font-weight: bold; font-size: 1.2em; }
20 .success { color: #00f; font-weight: bold; font-size: 1.2em; }
21 fieldset { width: 90%; }
22 legend { font-size: 24px; }
23 .note { font-size: 18px;
30 <legend>Example Form</legend>
33 This is an example
PHP form that processes user information, checks
for errors, and validates the captcha code.<br />
34 This example form also demonstrates how to submit a form to itself to display error messages.
42 <span
class=
"error">There was a problem with your submission. Errors are displayed below in red.</span><br /><br />
43 <?php elseif (isset(
$_SESSION[
'ctform'][
'success']) &&
$_SESSION[
'ctform'][
'success'] ==
true): ?>
44 <span class=
"success">The captcha was correct and the message has been sent!</span><br /><br />
47 <form method=
"post" action=
"<?php echo htmlspecialchars($_SERVER['REQUEST_URI'] . $_SERVER['QUERY_STRING']) ?>" id=
"contact_form">
48 <input type=
"hidden" name=
"do" value=
"contact" />
51 <strong>Name*:</strong> <?php echo @
$_SESSION[
'ctform'][
'name_error'] ?><br />
52 <input type=
"text" name=
"ct_name" size=
"35" value=
"<?php echo htmlspecialchars(@$_SESSION['ctform']['ct_name']) ?>" />
56 <strong>Email*:</strong> <?php echo @
$_SESSION[
'ctform'][
'email_error'] ?><br />
57 <input type=
"text" name=
"ct_email" size=
"35" value=
"<?php echo htmlspecialchars(@$_SESSION['ctform']['ct_email']) ?>" />
61 <strong>URL:</strong> <?php echo @
$_SESSION[
'ctform'][
'URL_error'] ?><br />
62 <input type=
"text" name=
"ct_URL" size=
"35" value=
"<?php echo htmlspecialchars(@$_SESSION['ctform']['ct_URL']) ?>" />
66 <strong>Message*:</strong> <?php echo @
$_SESSION[
'ctform'][
'message_error'] ?><br />
67 <textarea name=
"ct_message" rows=
"12" cols=
"60"><?php echo htmlspecialchars(@
$_SESSION[
'ctform'][
'ct_message']) ?></textarea>
71 <img
id=
"siimage" style=
"border: 1px solid #000; margin-right: 15px" src=
"./securimage_show.php?sid=<?php echo md5(uniqid()) ?>" alt=
"CAPTCHA Image" align=
"left" />
72 <
object type=
"application/x-shockwave-flash" data=
"./securimage_play.swf?bgcol=#ffffff&icon_file=./images/audio_icon.png&audio_file=./securimage_play.php" height=
"32" width=
"32">
73 <param name=
"movie" value=
"./securimage_play.swf?bgcol=#ffffff&icon_file=./images/audio_icon.png&audio_file=./securimage_play.php" />
76 <a tabindex=
"-1" style=
"border-style: none;" href=
"#" title=
"Refresh Image" onclick=
"document.getElementById('siimage').src = './securimage_show.php?sid=' + Math.random(); this.blur(); return false"><img src=
"./images/refresh.png" alt=
"Reload Image" height=
"32" width=
"32" onclick=
"this.blur()" align=
"bottom" border=
"0" /></a><br />
77 <strong>Enter Code*:</strong><br />
78 <?php echo @
$_SESSION[
'ctform'][
'captcha_error'] ?>
79 <input type=
"text" name=
"ct_captcha" size=
"12" maxlength=
"16" />
84 <input type=
"submit" value=
"Submit Message" />
100 if ($_SERVER[
'REQUEST_METHOD'] ==
'POST' && @
$_POST[
'do'] ==
'contact') {
103 foreach(
$_POST as $key => $value) {
104 if (!is_array($key)) {
106 if ($key !=
'ct_message') $value = strip_tags($value);
107 $_POST[$key] = htmlspecialchars(stripslashes(trim($value)));
111 $name = @
$_POST[
'ct_name'];
112 $email = @
$_POST[
'ct_email'];
114 $message = @
$_POST[
'ct_message'];
115 $captcha = @
$_POST[
'ct_captcha'];
116 $name = substr($name, 0, 64);
123 if (strlen($name) < 3) {
125 $errors[
'name_error'] =
'Your name is required';
128 if (strlen($email) == 0) {
130 $errors[
'email_error'] =
'Email address is required';
131 }
else if ( !preg_match(
'/^(?:[\w\d]+\.?)+@(?:(?:[\w\d]\-?)+\.)+\w{2,4}$/i', $email)) {
133 $errors[
'email_error'] =
'Email address entered is invalid';
136 if (strlen($message) < 20) {
138 $errors[
'message_error'] =
'Please enter a message';
145 require_once dirname(__FILE__) .
'/securimage.php';
148 if ($securimage->check($captcha) ==
false) {
149 $errors[
'captcha_error'] =
'Incorrect security code entered<br />';
156 $message =
"A message was submitted from the contact form. The following information was provided.<br /><br />" 157 .
"Name: $name<br />" 158 .
"Email: $email<br />" 161 .
"<pre>$message</pre>" 162 .
"<br /><br />IP Address: {$_SERVER['REMOTE_ADDR']}<br />" 163 .
"Time: $time<br />" 164 .
"Browser: {$_SERVER['HTTP_USER_AGENT']}<br />";
166 $message = wordwrap($message, 70);
170 mail(
$GLOBALS[
'ct_recipient'],
$GLOBALS[
'ct_msg_subject'], $message,
"From: {$GLOBALS['ct_recipient']}\r\nReply-To: {$email}\r\nContent-type: text/html; charset=ISO-8859-1\r\nMIME-Version: 1.0");
178 $_SESSION[
'ctform'][
'ct_email'] = $email;
180 $_SESSION[
'ctform'][
'ct_message'] = $message;
182 foreach(
$errors as $key => $error) {
184 $_SESSION[
'ctform'][$key] =
"<span style=\"font-weight: bold; color: #f00\">$error</span>";
Project: Securimage: A PHP class for creating and managing form CAPTCHA images File: securimage...