]> matita.cs.unibo.it Git - logicplayer.git/blob - public_html/logout.php
new initial commit
[logicplayer.git] / public_html / logout.php
1 <?php
2         session_start();
3         unset($_SESSION['ID']);
4         $arr=array('result'=>"logout effettuato con successo");
5         $ris=json_encode($arr);
6         echo $ris;
7 ?>