|
regular expressions in php
Hi I need an regular expression that I can use with preg_match() ...I want it to return true if argument is an alphanumeric and false otherwise.
What is the purpose of the statement beneath?
$x = preg_match ("/[A-z]+[0-9]+/", $password)
|