cyphix
05-21-2004, 05:02 PM
elseif ($fmtext == /[^0-9]/ or $fmcheckbox == /[^0-9]/) {
??
Thanks!
??
Thanks!
|
||||
Why won't this work?cyphix 05-21-2004, 05:02 PM elseif ($fmtext == /[^0-9]/ or $fmcheckbox == /[^0-9]/) { ?? Thanks! sad69 05-21-2004, 07:44 PM elseif ($fmtext == /[^0-9]/ or $fmcheckbox == /[^0-9]/) { ?? Thanks! else if are two words, not one. Sadiq. raf 05-21-2004, 07:46 PM it doesn't work because you are trying to compaire against the part of a regex. aren't rou trying to see if the values are numeric? then it's elseif (is_numeric($fmtext) or is_numeric($fmcheckbox)) { <edit> elseif is just fine </edit> cyphix 05-21-2004, 09:04 PM Yeah.. the actual elseif statement works fine like that, it'd the regex parts I was having trouble with. If I use "is_numeric" doesn't that allow decimals tho? :confused: raf 05-21-2004, 10:19 PM if you only want integers, you can use is_int cyphix 05-21-2004, 10:44 PM Ok, thnaks! dswimboy 05-21-2004, 10:55 PM preg_match is the (prefferrrd by me) regular expression engine in php. here are the docs: http://www.php.net/manual/en/ref.pcre.php http://www.php.net/manual/en/ref.regex.php cyphix 05-21-2004, 11:15 PM Cheers dswimboy! |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum