I get the following error when trying to load index.php of my forum...
"Fatal error: Cannot instantiate non-existent class: display in /home/msz070/public_html/blackdigitalunderground/forum/index.php on line 112"
On Line 109-114 I have the following...
require $root_path."sources/functions.php";
$std = FUNC;
$print = new display();
$sess = new session();
And in functions.php...the display class area is as follows...
class display {
var $to_print = "";
//-------------------------------------------
// Appends the parsed HTML to our class var
//-------------------------------------------
function add_output($to_add) {
$this->to_print .= $to_add;
//return 'true' on success
return true;
}
and so on....According to editor, it's classed as a comment...could this be the prob?