khanat-opennel-code/code/ryzom/tools/server/ryzom_ams/www/html/inc/login.php
2013-08-27 19:08:10 +02:00

17 lines
465 B
PHP

<?php
function login(){
if ( helpers :: check_if_game_client () ){
//check if you are logged in ingame.
$result = Helpers::check_login_ingame();
if( $result != "FALSE"){
//handle successful login
$_SESSION['user'] = $result['name'];
$_SESSION['id'] = WebUsers::getId($result['name']);
$_SESSION['ticket_user'] = Ticket_User::constr_ExternId($_SESSION['id']);
//go back to the index page.
header( 'Location: index.php' );
exit;
}
}
}