Do you know why I got these errors for status_bar.php in some webhost, but work perfectly on other webhost?
Whats wrong? here are the codes from line 18, our webhost is running php5.
[code=php]
$dmg = ($_GET['re'] == 0 || $_GET['re'] == '22') ? $_GET['rand'] : $_GET['diff']+$_GET['rand'];[/code]
Notice: Undefined index: re in /usr/home/daniel/domains/thehornyguy.com/public_html/criminalonline/status_bar.php on line 18
Notice: Undefined index: rand in /usr/home/daniel/domains/thehornyguy.com/public_html/criminalonline/status_bar.php on line 18
Notice: Undefined index: rand in /usr/home/daniel/domains/thehornyguy.com/public_html/criminalonline/status_bar.php on line 18
[code=php]
$dmg = ($_GET['re'] == 0 || $_GET['re'] == '22') ? $_GET['rand'] : $_GET['diff']+$_GET['rand'];[/code]
Comment