In the code on this page you should have these lines of code toward the top of the page:
if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"contact");
}
Update this code so that it looks like this:
if ($WAFV_Errors != "") {
die("the answer you posted is: " . strtolower($_POST["Security_question"]) . "<br/>the anwser it is looking for is: " . $_SESSION["random_answer"]);
PostResult($WAFV_Redirect,$WAFV_Errors,"contact");
}
When you test this page out you will see a white page that just has two messages about the security question and the answer. Please post back with what you discover.