Ich bekomme folgende Fehlermeldungen die von WAMP ausgegeben werden
Code
Notice: Undefined index: action in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 3
Notice: Undefined index: username in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 4
Notice: Undefined index: password in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 5
Notice: Undefined index: name in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 6
Notice: Undefined index: playerid in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 7
Notice: Undefined index: winner in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 8
Notice: Undefined index: winnerdel in C:\wamp64\www\domain.de\htdocs\keybinder\handler.php on line 9
Alles anzeigen
die betreffenden Zeilen sind,
PHP
$action = $_GET['action'];
$username = $con->real_escape_string($_GET['username']);
$password = $con->real_escape_string(md5($_GET['password']));
$name = $con->real_escape_string($_GET['name']);
$playerid = $con->real_escape_string($_GET['playerid']);
$winner = $con->real_escape_string($_GET['winner']);
$winnerdel = $con->real_escape_string($_GET['winnerdel']);
Was läuft hier falsch ? Unter Linux geht es aber unter Windows und WAMP leider nicht.
PHPVersion: 7.1.9
Apache Version: 2.4.27