<?php
//20190801 - Added _system.php as localhost refuses to have a file named system.php.  - Gael
if($_SERVER["SERVER_NAME"] == "localhost" )
   include_once("_system.php");
else
   include_once("system.php");
   
//print_rr($_SESSION); die;
   if(isset($_SESSION["ONLINE"]))
      header("Location: home.php");
   else
      header("Location: login.php");

?>
