I have tried:
preg_match("/^[a-zA-Z0-9]", $value)
but im doing something wrong i guess.
|
I have tried:
but im doing something wrong i guess. |
||||
|
|
|
Try:
\w includes more than alphanumeric (it includes underscore), but includes all of \d. Alternatives could be:
... or even ...
HOWEVER, there is an even easier/faster way using inbuilt PHP functions, which execute faster than a RegEx, specifically
See here |
|||
|
So it should fail anyway, but if it may work, it matches against just one digit at the beginning of the string.
|
|||
|
|
|
You left off the
|
||||
|
|
|
try this way .eregi("[^A-Za-z0-9.]", $value) |
|||
|