Current File : /home/inlingua/public_html/icentex/admin/backup/check.php |
<?php
ini_set("memory_limit","128M");
//ini_set("memory_limit","256M");
//this sets it unlimited
ini_set("max_execution_time",0);
ob_start();
session_start();
if($_SESSION['id']=="" || $_SESSION['usertype']!='timesheet_admin')
{
header("Location: index.php");
}
else
{
echo"";
}
//print_r($_SESSION);
/*$_SESSION['id']=$objectData['recNo'];
$_SESSION['username']=$objectData['username'];
$_SESSION['usertype']=$objectData['usertype'];
header("Location: admin.php");*/
?>