Quote:
Originally Posted by Wanagi
if score is saved, this error will appear at the top:
This is line 43: $act = $_GET['act'];
this is line 45: $showuser= $_GET['showuser'];
Please help. Thx.
|
Try this:
In your index.php code
change this:
Code:
$act = $_GET[act];
$autocom = $_GET[autocom];
$showuser= $_GET[showuser];
if($act == "Arcade" || $autocom=="arcade") {
include "arcade.php";
exit();
}
to this:
Code:
$act = isset($_GET['act']);
$autocom = isset($_GET['autocom']);
$showuser= isset($_GET['showuser']);
if($act == "Arcade" || $autocom=="arcade") {
include "arcade.php";
exit();
}