Also you might want to use this regular expression to modify the pagetext-- it will remove the vBCode for a cleaner display:
PHP Code:
$thread[pagetext]=preg_replace("/\[[^\]]*\]/","",$thread[pagetext]);
HEY THIS PHP PARSER IS EATING MY REGEX..... do not use the above code.. I'm leaving it there to point out a flaw in vB's php code thingy... here is the correct regex
$thread[pagetext]=preg_replace("/\[[^\]]*\]/","",$thread[pagetext]);
(notice the slashes)