session_start(); //echo $_GET['security_code']; exit; if(isset($_POST['Submit'])) { if( $_SESSION['security_code'] == $_POST['security_code'] && !empty($_SESSION['security_code'] ) ) { // Insert you code for processing the form here, e.g emailing the submission, entering it into a database. $successful="Thank you. Your message said"; // echo $successful; unset($_SESSION['security_code']); } else { // Insert your code for showing an error message here $captcha_error="Sorry, you have provided an invalid security code"; //echo $massege; } } ?>
|
||||||||||||||||
|
||||||||||||||||
|
||||||||||||||||