FabrikaHradekTour/res/forum/api/user_info.php

26 lines
655 B
PHP
Raw Normal View History

2024-05-20 20:25:38 +02:00
<?php
include("../../global.php");
session_start();
if (!isset($_SESSION["username"])) goto fail;
$out = $database -> query("SELECT username, admin FROM user WHERE username=\"" . $_SESSION["username"] . "\" AND admin=\"1\"");
if ($out -> num_rows != 1)
{
fail:
echo "nope";
header("Location: ../../../index.php");
return;
}
if (!isset($_GET["username"])) return;
$out = $database -> query("SELECT username, admin FROM user WHERE username=\"" . $_GET["username"] . "\"");
while ($res = $out -> fetch_assoc())
{
echo "Uživatelské jméno: " . $res["username"] . "<br>";
echo "Admin: " . ($res["admin"] == 1 ? "Ano" : "Ne");
}