I am trying to remove Space in username but something is wrong. My 1 other condition keep running. Even when i put username without space, it is not working
Here is my code
$username = trim($_POST['username']);
$username = strip_tags($username);
$username = htmlspecialchars($username);
// username validation
if (empty($username)) {
$error = true;
$usernameError = "Please enter your username.";
} else if (strlen($username) < 3) {
$error = true;
$usernameError = "Username must have at least 3 characters.";
} else if (preg_match("/^(?=.*[a-z])(?=.*[0-9])[a-z0-9][a-z0-9_]{1,6}[a-z0-9]$/", $username)) {
$error = true;
$usernameError = "Username must contain alphabets and numbers.";
}