Ok, so I know many of you are going to complain that i'm using PHP but I really don't care. What's worse is that I'm outdated with PH and am having some deprecated issues. So if someone could help me solve these issues it'd be quite helpful
[code]
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 982
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 982
Deprecated: Function eregi() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1023
Deprecated: Function eregi() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1023
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
Deprecated: Function ereg() is deprecated in /home/zgbwcahj/public_html/sg/location.php on line 1183
[/code]
[code]
line 982: if(ereg("ls",$ships['config']) || ereg("hs",$ships['config'])){
line 1183: if(!ereg("ls",$ships['config']) && !ereg("hs",$ships['config'])){
[/code]
I do understand that ereg and eregi is now deprecated and that there's a replacement for it but I just don't know how to implement replacement for it.
And please don't say just to downgrade my php version or turn the error logging off. Any help would be quite helpful and appreciated.
[php]
line 982: if(strtr("ls",$ships['config']) || strtr("hs",$ships['config'])){
line 1183: if(!strtr("ls",$ships['config']) && !strtr("hs",$ships['config'])){
[/php]
Awesome! it worked. Thanks so much :)
fyi,
[img]http://i.imgur.com/Xh0SX.png[/img]
php.net is a useful resource
Sorry, you need to Log In to post a reply to this thread.