Replace this:
Code:
$findwords=array(0 => '{bbusername}');
$replacewords=array(0 => "$bbuserinfo[username]");
$i=1;
$findwords=array(0 => '{getmicrostats}');
$replacewords=array(0 => $microstats);
$i=1;
With this:
Code:
$findwords = array(
0 => '{bbusername}',
1 => '{getmicrostats}'
);
$replacewords = array(
0 => $bbuserinfo['username'],
1 => $$microstats
);
$i = 2;