PDA

View Full Version : Getting latest posts on main page


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?

nico_swd
10-28-2006, 07:41 AM
$db->fetch_array() returns an array, that's why. Try

echo $content['pagetext'];

x3sphere
10-28-2006, 03:11 PM
Works great now, thanks :)

cdembek
10-29-2006, 02:26 AM
is this added to the index.php file or a template?