Momentan ist dies halt so, jedoch will ich nicht immer ein "Datensatz" hinzufügen , da die liste irgendwann zu lang ist finde ich.
PHP
global $mysqli;
$getKey = $_REQUEST['key'];
$getUser = $_REQUEST['user'];
$getKey = $mysqli->real_escape_string($getKey);
$getUser = $mysqli->real_escape_string($getUser);
$sql_data = 'SELECT `id`, `username`, `activate`, `CanStart`, `CanRestart`, `CanStop`, `CanDelete`, `CanInstall`, `CanUpdate`, `CanSeeFullDebug` FROM `kf2_user` WHERE username = \''. $getUser .'\' AND session_key = \''. $getKey .'\'';
$myArray = array();
$result = $mysqli->query($sql_data);
while($row = $result->fetch_assoc()) {
$myArray[] = $row;
}
echo substr(json_encode($myArray), 1, -1);
Alles anzeigen