ok for the sake of testing I did this
$text = "Me: Hello<br>You:Boo";
$text = explode(":|<br>" , $text);
$i = 0;
for ($i = 0; $i < count($text); $i++){
echo "</font><b>".$text[$i]."</b>:";
$i++;
echo "<font color='red'>".$text[$i]."</font>";
echo "<br><br>";
}
and thought it would work...but it never, instead I got this as the html output
</font><b>Me: Hello<br>You:Boo</b>:<font color='red'></font><br><br>
so..if I wanted to make it explode both : and <br> am I going about it the right way or the wrong way?