Joshua F Posted March 31, 2011 Share Posted March 31, 2011 The error: Warning: eregi() [function.eregi]: REG_ERANGE in /home/joshuaf/public_html/dev/toplist/register.php on line 137 Line 137: elseif(!eregi("[A-Za-z0-9-\s]{3,25}",$_POST['username'])){ Quote Link to comment https://forums.phpfreaks.com/topic/232242-error/ Share on other sites More sharing options...
Skewled Posted March 31, 2011 Share Posted March 31, 2011 http://php.net/manual/en/function.eregi.php That has been depreciated you should use: http://us.php.net/manual/en/function.preg-match.php Quote Link to comment https://forums.phpfreaks.com/topic/232242-error/#findComment-1194749 Share on other sites More sharing options...
Joshua F Posted March 31, 2011 Author Share Posted March 31, 2011 http://php.net/manual/en/function.eregi.php That has been depreciated you should use: http://us.php.net/manual/en/function.preg-match.php I used it off of http://www.phpfreaks.com/forums/index.php?topic=96280.0, maybe they should update that thread then. I started out with Preg-match but had problems with it. I'll try it again though. Quote Link to comment https://forums.phpfreaks.com/topic/232242-error/#findComment-1194750 Share on other sites More sharing options...
Skewled Posted March 31, 2011 Share Posted March 31, 2011 The 2nd post in that thread gives examples of preg_match: if (preg_match('/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i', $input_email)) { echo 'Email entered is valid'; } else { echo 'Email entered is not valid'; } Quote Link to comment https://forums.phpfreaks.com/topic/232242-error/#findComment-1194753 Share on other sites More sharing options...
Skewled Posted March 31, 2011 Share Posted March 31, 2011 Couldn't edit my above post so I'll just do it here. This is what I used to read about regular expressions and it helped me with forming matches for my registration script. http://www.webcheatsheet.com/php/regular_expressions.php I hope this helps you out, if your having issues after this just post it up. Quote Link to comment https://forums.phpfreaks.com/topic/232242-error/#findComment-1194761 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.