PHP Code:
$regexp = "^[A-Za-z0-9]";
This regular expression mean only alphabet or number at the beginner of
the string would match.
PHP Code:
$regexp = "^[A-Za-z0-9]$";
This regular expression mean only one character is allow and that character
must be alphabet or number.