you have the "invalid information" message inside the Validated form show region, so that would mean that the form is not passing validation.
we need to know which validation is failing to be able to troubleshoot why.
change the following code:
if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"registration");
}
to:
if ($WAFV_Errors != "") {
die($WAFV_Errors);
PostResult($WAFV_Redirect,$WAFV_Errors,"registration");
}
this will write a comma separated list of umbers to help us determine which validation is causing the failure.