<?php
echo "<h1>Register</h1>";
$submit = @$_POST['submit'];
$fullname = strip_tags(@$_POST['fullname']);
$username = strip_tags(@$_POST['username']);
$password = strip_tags(@$_POST['password']);
$repeatpassword = strip_tags(@$_POST['repeatpassword']);
$date = date("Y-m-d");
if ($submit)
{
//check for existence
if ($fullname&&$username&&$password&&$repeatpassword)
{
// Encrypt password
$password = md5($password);
$repeatpassword = md5($repeatpassword;);
if ($password==$repeatpassword)
{
//check char length of username and fullname
if (strlen($username)>35||strlen($fullname)>25)
}
else
{
//check password length
if (strlen($password)>25||strlen($password<6)
{
echo "Password must be between 6 and 25 characters";
}
}
else
echo "your passwords do not match!";
}
else
echo "Please fill in <b>all</b> fields!";
}
?>
<html>
<p>
<form action='register.php' method='POST'>
<table>
<tr>
<td>
Your full name:
</td>
<td>
<input type='text' name='fullname'>
</td>
</tr>
<tr>
<td>
Choose a username:
</td>
<td>
<input type='text' name='username'>
</td>
</tr>
<tr>
<td>
Choose a password:
</td>
<td>
<input type='password' name='password'>
</td>
</tr>
<tr>
<td>
Repeat your password:
</td>
<td>
<input type='password' name='repeatpassword'>
</td>
</tr>
</table>
<p>
<input type='submit' name='submit' value='Register'>
</form>
</html>
^ I need help with this code I don't know what's all wrong but even if I fix the ";" error there's still a lot more mainly saying un-expected $end.