<?php session_start(); $response = array(); // Server side check to make sure nothing is blank / empty if (!empty($_POST)) { require dirname(__FILE__) . "/../../classes/class.Admin.inc.php"; $admin = new \WurmUnlimitedAdmin\ADMIN(); $create = $admin->Create($_POST); $response = $create; } else { $response = array("success" => false, "message" => "Blank"); } echo json_encode($response);
<?php session_start(); $response = array(); // Server side check to make sure nothing is blank / empty if (!empty($_POST)) { require_once "../../../classes/class.Admin.inc.php"; $admin = new \WurmUnlimitedAdmin\ADMIN(); switch ($_POST["doing"]) { case "loadUser": $response = $admin->GetUsers($_POST["accountID"]); break; case "changeLevel": $response = $admin->ChangeLevel(array("accountID" => $_POST["accountID"], "level" => $_POST["level"])); break; case "resetPassword": $response = $admin->ResetPassword($_POST["accountID"]); break; case "deleteUser": $response = $admin->Delete($_POST["accountID"]); break; default: $response = array("success" => false); break; } } else { $response = array("success" => false, "message" => "Blank"); } echo json_encode($response);
<?php $response = array(); require dirname(__FILE__) . "/../../classes/class.Admin.inc.php"; $admin = new \WurmUnlimitedAdmin\ADMIN(); $userList = $admin->GetUsers($_POST); $response = $userList; echo json_encode($response);