mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-17 05:08:24 +01:00
14 lines
331 B
PHP
14 lines
331 B
PHP
<?php
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
include_once('../include/misc.php');
|
|
include_once('../include/auth.php');
|
|
conn_db();
|
|
$query="SELECT level FROM users WHERE id=" . intval($_GET['id']);
|
|
$result = mysql_query($query);
|
|
if ($row = mysql_fetch_array($result)) {
|
|
echo $row['level'];
|
|
} else {
|
|
echo 'none';
|
|
}
|
|
?>
|