Re: Warning: ereg(): REG_BADBR
- From: "Kimmo Laine" <spam@xxxxxxxxxxxxx>
- Date: Fri, 28 Apr 2006 14:19:17 +0300
<millw0rm@xxxxxxxxx> wrote in message
news:1146208077.913936.287620@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
why i m getting error here???
Warning: ereg(): REG_BADBR
code:
if(!ereg("^(.){15,400}$",$string)) {
$errormsg[1] = "- Must be more then 15 Characters & less then 400
Characters";
}
Want to Achive:
$string is a textarea, i want the user to input atleast 15 characters
and shldnt exceed more then 400 characters!
Don't know, but why would you need to use a regexp for so trivial case?
Remember the KISS rule: Keep it simple, stupid.
if( ($len = strlen($string)) < 15 || $len > 400) {
$errormsg[1] = "- Must be more then 15 Characters & less then 400
Characters";
}
--
"ohjelmoija on organismi joka muuttaa kofeiinia koodiksi" -lpk
spam@xxxxxxxxxxxxx | Gedoon-S @ IRCnet | rot13(xvzzb@xxxxxxxxxxxxx)
.
- Follow-Ups:
- Re: Warning: ereg(): REG_BADBR
- From: millw0rm@xxxxxxxxx
- Re: Warning: ereg(): REG_BADBR
- References:
- Warning: ereg(): REG_BADBR
- From: millw0rm@xxxxxxxxx
- Warning: ereg(): REG_BADBR
- Prev by Date: Looking for general advice on security
- Next by Date: Re: Problems Creating the Code to Open Images Within a Template PHP Page
- Previous by thread: Warning: ereg(): REG_BADBR
- Next by thread: Re: Warning: ereg(): REG_BADBR
- Index(es):