mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +00:00
20 lines
298 B
PHP
20 lines
298 B
PHP
<?php
|
|
|
|
if(!isset($_COOKIE["sessionId"]))
|
|
{
|
|
header("Location: control_panel_login.php");
|
|
exit;
|
|
}
|
|
$g_sessionId = $_COOKIE["sessionId"];
|
|
|
|
try
|
|
{
|
|
$g_userId = GetUserIdFromSession($g_databaseConnection, $g_sessionId);
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
header("Location: control_panel_login.php");
|
|
exit;
|
|
}
|
|
|
|
?>
|