I am getting no error but INCLUDE_DIR.'class.ticket.php' is not including the file...the path is right but still nothing is happening...could anyone please explain how to solve this issue.
require_once(INCLUDE_DIR.'class.client.php');
echo INCLUDE_DIR.'class.ticket.php';
if( file(INCLUDE_DIR.'class.ticket.php'))
echo "here";
require_once(INCLUDE_DIR.'class.ticket.php');
echo "file included";
here gets printed but file included is not printed Thanks
if( file(INCLUDE_DIR.'class.ticket.php') && is_readable(INCLUDE_DIR.'class.ticket.php'))and also make sure that there's no PHP errors in yourclass.ticket.phpfile. – Blair McMillan Mar 9 '11 at 11:36