* File: securimage.php
* URL: www.phpcaptcha.org
*/
session_start(); // Start the session where the code will be stored.
?>
Securimage Test Form
check($_POST['code']);
if($valid == true) {
echo "Thanks, you entered the correct code.
Click here to go back.";
} else {
echo "Sorry, the code you entered was invalid. Go back to try again.";
}
}
?>