<title>IP Address Unban Request</title>
<center><h1>IP Address Unban Request</h1></center>
<center>
<html>
<body>
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['IP Address Unban Request'] ;
$message = $_REQUEST['message'] ;
mail( "someone@example.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
echo "<form method='post' action='mailform.php'>
Name:<br> <input name='name' type='text' /><br /><br>
Email:<br> <input name='email' type='text' /><br /><br>
IP Address:<br> <input name='IP' type='text' /><br /><br>
Forum Username:<br> <input name='forum' type='test' /><br /> <br>
<?php
require_once('recaptchalib.php');
$publickey = "6LdCcgkAAAAAAFgVOB_ecmPX8gfhqSYmHhDhBxWm"; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>
<input type='submit' />
</form>";
}
?>
</body>
</html>
</center>
i get this: Parse error: syntax error, unexpected T_LNUMBER, expecting ',' or ';' in /home/alex/public_html/index.php on line 29 can anyone help me with this