Forum Moderators: coopster
I am trying to construct the above function to check that
something that contains ONLY upper/lower case letters or numbers.
It should match REggex23 or 125regEX52 etc.
I've tried several patterns
including
^[a-zA-Z0-9]+$
/^\s?[a-zA-Z0-9]+$/ (thanks eelixduppy :-) )
And I've used eregi instead of preg_match
But the function keeps failing.
Thanks for any help