The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Getting latest posts on main page
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"
Code:
$posts = $db->query_read_slave("SELECT pagetext FROM post ORDER BY dateline DESC LIMIT 10"); while ($content = $db->fetch_array($posts)) { echo $content; } |
#2
|
||||
|
||||
$db->fetch_array() returns an array, that's why. Try
PHP Code:
|
#3
|
|||
|
|||
Works great now, thanks
|
#4
|
|||
|
|||
is this added to the index.php file or a template?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|