x3sphere
10-28-2006, 05:05 AM
Can't seem to output the latest posts on my site's main page (outside of vB), all the query returns is the text "Array"
$posts = $db->query_read_slave("SELECT pagetext FROM post ORDER BY dateline DESC LIMIT 10");
while ($content = $db->fetch_array($posts))
{
echo $content;
}
Any ideas?
$posts = $db->query_read_slave("SELECT pagetext FROM post ORDER BY dateline DESC LIMIT 10");
while ($content = $db->fetch_array($posts))
{
echo $content;
}
Any ideas?