PDA

View Full Version : PHP Regex Question


Hunkorama417
10-11-2000, 08:00 PM
PHP keeps giving me the following error: Warning: REG_BADRPT.

The error is coming from my regular expression which is: eregi ("^*shared\.inc\.php", $page_url); Hopefully someone will fix this for me.
------------------
Andrew
www.digi-FX.net (http://www.digi-FX.net)

Justin
10-11-2000, 08:49 PM
change the '*' to '.*'. The * character means to match any number of the preceding pattern, and you have no pattern preceding the '*'.

Hope this helps.

------------------
Justin Nelson
FutureQuest (http://www.FutureQuest.net/index.php) Support

Hunkorama417
10-11-2000, 09:54 PM
That did the trick!