rantsh Posted March 8, 2007 Share Posted March 8, 2007 Hi all, maybe you can all help me figuring out what the hell is going on here. ??? ??? ??? I've been using ereg for a long time and have never got this warning before: Warning: ereg() [function.ereg]: REG_BADBR in file.php on line ## The code in that line is this: $Hour = ($_GET['Hour']=='')?"00":(ereg("[0-9]{1-2}",$_GET['Hour']))?$_GET['Hour']:"00"; $_GET['Hour'] is defined, and the purpouse of this code is to verify if an hour (just the hour, no minutes or anything else) that's coming from a textfield is a correct number, if not, then use 00... I really don't know why this is happening, any clues from anyone??? Thanks, Roderick Quote Link to comment Share on other sites More sharing options...
rantsh Posted March 8, 2007 Author Share Posted March 8, 2007 alright, so I've seen the warning reason, it's {1,2} not {1-2}. Thanks anyway ((I feel very stupid duh!!!)) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.