a) Fehler im Formular

b) private/public haben schone eine Bedeutung.

--

a) In der anmelden.php müssen 2x 2 Zeilen vertauscht werden:

HTML-Code:
  <table width="100%" cellpadding="3" cellspacing="0" border="0">
  <form action="" method="post">
<!--- blaa  --->
   </form>
  </table>
muss so aussehen:
HTML-Code:
  <form action="" method="post">
  <table width="100%" cellpadding="3" cellspacing="0" border="0">
<!--- blaa  --->
  </table>
   </form>
b)
functions.lib.php:

PHP-Code:
// reCaptcha Public Key
// from http://recaptcha.net/api/getkey?app=php
$reCaptchaKey '';  
$reCaptchaKey2 ''//private key 
anmelden.php:
PHP-Code:
/* Start reCaptcha */
 
$resp recaptcha_check_answer ($reCaptchaKey2,$ip,$_POST["recaptcha_challenge_field"],$_POST["recaptcha_response_field"]);
if (!
$resp->is_valid)    $error $resp->error;
/* End reCaptcha */