I am getting 2 errors... can anyone help... please
Parse error: parse error in /var/www/html/includes/functions.inc.php on line 34
Fatal error: Call to undefined function: make_output() in /var/www/html/index.php on line 9
THIS IS LINE 34
while ($result = $db->sql_fetchrow($query))
AND THIS IS THE INDEX.PHP FILE
**********
<?php
// Index.php
// Displays home page
require_once('includes/functions.inc.php');
require_once('includes/classes.inc.php');
// Build output from template
$output = make_output("index", $output_array);
print $output;
?>
********
any ideas ? is it trying to get a template from the database... from a row in a table which is not there ?
Thanks for your replies
Jolac