Does anyone know why this regex always proves that $_description is over 100 charachters, even when it isn't? :-/
if(!eregi("[\w\d\s\.,]{,100}", $_description))
I only want words, digits, commands as full stops to be allowed in this variable.
Cheers in advance.
Andy
if(!eregi("[\w\d\s\.,]{,100}", $_description))
I only want words, digits, commands as full stops to be allowed in this variable.
Cheers in advance.
Andy