the screen shot of PHP MyAdmin sows that "localhost" is the correct host name to use in the database connection. see attached screen shot.
delete the following code to remove the arrray output:
array(1) {
["captcha_Security_Code_1"]=>
string(5) "znkPx"
}
<pre><?php var_dump($_SESSION); ?></pre>
only the first line:
$WAFV_Errors .= WAValidateLE(strtolower($_SESSION['captcha_Security_Code_1']) . "",((isset($_POST["Security_Code_1"]))?strtolower($_POST["Security_Code_1"]):"") . "",true,1);
is needed, the second one will cause captcha to be case sensitive:
$WAFV_Errors .= WAValidateLE($_SESSION['captcha_Security_Code_1'] . "",((isset($_POST["Security_Code_1"]))?$_POST["Security_Code_1"]:"") . "",true,1);
