Not that I'm not willing to help, but you might want to brush up on your PHP if you're not understanding these errors. XP
See the error? It ran into a "if" statement when it was expecting a "function" statement. Pretty straight-forward.
Now take a look at the line numbers--all of this is erring on line 463, inside of an eval'd code, see? That almost always means that it's a Plugin causing your woes, and if you look on line 463 in member.php, you will see that there's a hook there for plugins.
Now, the second number is "252". Notice that your previous error with misplacing the global was on line 247, so this new error is about 5 lines after that. This means that it's probably right at the end of this plugin OR it's right near the beginning of the next plugin that's loaded. (Without seeing the entire modifications you've made to this plugin, none of us can really tell you for certain, though.)
So post your complete edited code, and we'll try to help you out,
but be sure to look at a few PHP Tutorials so you can get a better grasp on the PHP syntax. :3
--------------- Added [DATE]1262194924[/DATE] at [TIME]1262194924[/TIME] ---------------
Ah. >.>
PHP Code:
function prepare_output($id = '', $options = array())
{
global $db;
$this->block_data['longbox'] = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "formresults WHERE userid = '$bbuserinfo[userid]' , AND title = 'Resume' ");
}
Heh. See,
$db is a variable containing a Object, and
query_first is a method of that Object. You are calling that Method with a string meant for MySQL, but you forgot to call the method. XP