[...]
> if (strlen($_POST['password1']) > 0) {
> if ($_POST['password1'] ==
> ($_POST['password2'] {
> 1..... $password = TRUE;
>
> } else {
> $password = FALSE;
> echo '<p<Your password did not match the confirmed password!</p>'
> }
> } else {
> $password = FALSE;
> echo '<p>You forgot to enter your password!</p>';
> }
[...]try :
if ( strlen ( $_POST['password1'] ) > 0 ) {
if ( $_POST['password1'] == $_POST['password2'] ) {
$password = TRUE ;
} else {
$password = FALSE;
echo '<p<Your password did not match the confirmed password!</p>'
}
} else {
$password = FALSE;
echo '<p>You forgot to enter your password!</p>';
}-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

