$username = $_POST['username']; if(!preg_match('^((?!&#\d+;) [\x20-\x7E])+$', $username)) { echo ('That is not a valid username.'); } else { die(); }