You are not structuring your function correctly. Rather than explain it, I will just post the comment from class_bbcode.php.
PHP Code:
/**
* Allows extension of the class functionality at run time by calling an
* external function. To use this, your tag must have a callback of
* 'handle_external' and define an additional 'external_callback' entry.
* Your function will receive 3 parameters:
* A reference to this BB code parser
* The value for the tag
* The option for the tag
* Ensure that you accept at least the first parameter by reference!
*
* @param string Value for the tag
* @param string Option for the tag (if it has one)
*
* @return string HTML representation of the tag
*/