romeo2010
Apr 3rd 2008, 12:46 pm
using this code i try to display the threads on another page
<?php
chdir(public_html/forums);
require_once('./global.php');
$threads = $db->query_read("
SELECT title FROM " . TABLE_PREFIX . "thread
ORDER by dateline DESC
LIMIT 0,5
");
while ($thread = $db->fetch_array($threads))
{
echo $thread['title'] . "<br />";
}
?>
but this give me tfollowing error
Fatal error: Class 'App' not found in /home2/public_html/forums/global.php(360) : eval()'d code on line 1
any idea how to fix that?
<?php
chdir(public_html/forums);
require_once('./global.php');
$threads = $db->query_read("
SELECT title FROM " . TABLE_PREFIX . "thread
ORDER by dateline DESC
LIMIT 0,5
");
while ($thread = $db->fetch_array($threads))
{
echo $thread['title'] . "<br />";
}
?>
but this give me tfollowing error
Fatal error: Class 'App' not found in /home2/public_html/forums/global.php(360) : eval()'d code on line 1
any idea how to fix that?