View Single Post
  #10 (permalink)  
Old 11-28-09, 09:26 AM
Jcbones Jcbones is offline
Aspiring Coder
 
Join Date: Mar 2009
Location: North Carolina, USA
Posts: 516
Thanks: 5
Thanked 47 Times in 44 Posts
Run this and see what happens.

index.php
PHP Code:

<?PHP
session_start
();
error_reporting(E_ALL);
//define('__sn', 1);
include('config.php'); // Include all config vars.
include('inc.php'); // Include all classes and functions.
$layout->headStart();
if(isset(
$_SESSION['UINFOSTAFF'])){
    echo 
"hello";
}else{
    echo 
"hello";
}
$layout->footStart();
?>
Reply With Quote