PHP Code:
if ($foruminfo['forumid'] == 32)
{
$lyrics = '';
$lyrics = $vbulletin->db->query_first_slave("
SELECT *
FROM " . TABLE_PREFIX . "thread
WHERE forumid = 34 AND title = '" . mysql_escape_string($threadinfo['title']) . "' LIMIT 1
");
}
I am guessing the variable scope is preventing me from using $lyrics within the postbit template? I have tried adding global $lyrics; to the above plugin and add it as a seperate plugin in global start but it still won't work.
I've tried $GLOBALS[lyrics] in the template but no luck either.
What am I missing here? All I want to do is use $lyrics within postbit