PHP Code:
function prepare_output($id = '', $options = array())
global $db;
{
$this->block_data['longbox'] = $db("SELECT * FROM " . TABLE_PREFIX . "formresults WHERE userid = '$bbuserinfo[userid]' , AND title = 'Resume' ");
}
you have the global outside of the {}
should be like this..
PHP Code:
function prepare_output($id = '', $options = array())
{
global $db;
$this->block_data['longbox'] = $db("SELECT * FROM " . TABLE_PREFIX . "formresults WHERE userid = '$bbuserinfo[userid]' , AND title = 'Resume' ");
}