|
More Questions
Hi friends,
Thanks, it works !!
But now I need just the opposite for a fill-in form.
====================
$minchar = '10';
$maxchar = '20';
if(length $FORM{'data8'} < $minchar || length $FORM{'data8'} > $maxchar) { &errormessage }
========================
1/How do I add to the above that the string may ONLY contain letters a-z and A-Z and/or numbers 0-9, nothing else.
2/completely same as above, but may also not contain any spaces.
Thanks and Regards,
Sanuk
|