Hi,
I think this is a pretty simple question.
I want to place a
at the end of each of these so it is displayed in a list rather that one long line.
[php] if(strlen($username) > 25 ) $errors[] = ‘� Username can not be longer than 12 characters’;
if(strlen($username) < 3 ) $errors[] = ‘� Username must be 3 characters or more’;
if(strlen($password) < 5 ) $errors[] = ‘� Password must be 5 characters or more’;
if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) $errors[] = ‘� Please enter a valid email address’;[/php]
How would I do it?
Thanks