Compare commits

..

No commits in common. "a33bf214757658106eb9ea358740751017cbf8f3" and "4f3395b2c76ca195b2b885ebb870ec04b702b3fc" have entirely different histories.

2 changed files with 18 additions and 20 deletions

View File

@ -4,9 +4,7 @@ require 'header.php';
require_login(); require_login();
$data = array(); $data = array();
$data["session"] = $_SESSION;
$data["server"] = $_SERVER;
header('Content-Type: application/json'); header('Content-Type: application/json');
echo json_encode($data); echo json_encode($_SESSION);
exit(); exit();