can we get a little more clarification on this? How in fact do we run a query to fetch that data.
This is what we have so far:
Code:
LINE 50<?php include(Forum/global.php);
$threads = $vbulletin->db->query_read("
SELECT *
FROM " . blakecul_vbullet . "thread
WHERE forumid = 2
ORDER BY dateline DESC
LIMIT 5
");
while ($thread = $vbulletin->db->fetch_array($threads))
{
// thread data is in $thread
} ?>
And receiving: Parse error: syntax error, unexpected T_GLOBAL in /home/blakecul/public_html/layoutsliced.php on line 50