another php problem can you help?

one of my friends is having another php problem. check this out below

this is the error:

Warning: Unknown(/usr/local/apache/htdocs/random/random.php): failed to open stream: No such file or directory in /home/user/public_html/sources/display.class.php(217) : eval()'d code on line 97

Warning: (null)(): Failed opening '/usr/local/apache/htdocs/random/random.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/user/public_html/sources/display.class.php(217) : eval()'d code on line 97



and the code for this file is
PHP Code:
    // Define document root:
    //***
    
define("ROOT"$_SERVER['DOCUMENT_ROOT']."/");

    
//--------------------------

    //***
    // Start up Sessions :
    //***
    
session_start();

    
//---------------------------
    //***
    // Load Required Files(config, fuctions, classes, etc):
    //***
    
require ROOT."config.php";
    require 
ROOT."sources/functions.php";
    require 
ROOT."sources/mysql.class.php";
    require 
ROOT."sources/Vars.class.php";
    require 
ROOT."sources/User.class.php";
    require 
ROOT."sources/display.class.php"
Do you guys have any idea/ what could be wrong with this code?

 

 

 

 

Top