Second question is : when i login on my copmuter everything comes up fine like it is suppsoed to look , however when my boss login on his computer there is a chunk of the form that is missin , could this be becasue i have been programming on windows 2000 with internet explorer5 and his computer is xp with internet explorer 6?? Or does taht make a difference??
This is the code that appears on mine but not on his! :
Code: Select all
<?php
<?PHP
if ($HTTP_COOKIE_VARS['UserName'] == 'ikeane')
{
VeiwAdminPage($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'lmcgill')
{
VeiwTimeSheet1($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'jkeane')
{
VeiwTimeSheet2($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'ereid')
{
VeiwTimeSheet3($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'bmccormack')
{
VeiwTimeSheet4($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'mfrench')
{
VeiwTimeSheet5($ErrorCode);
}
if($HTTP_COOKIE_VARS['UserName'] == 'carmstrong')
{
VeiwTimeSheet6($ErrorCode);
}
?>Thanx in advance!