I'd like to remove all <br /> tags found between any table tags, as might happen if you took an html table and put it through nl2br(). Any suggestions?
Not totally sure what you want, but this might work:
$var = explode ("<br />", $what you want to strip);
$var2 = implode ("", $var);
-D