Right,
I went for the simplest implementation I replaced
<?
ereg_replace("<[^>]*>","",$bibbit_two[$i]);
ereg_replace("[^>]*>","",$bibbit_two[$i]);
ereg_replace(">","",$bibbit_two[$i]);
?>
with
<?
$bibbit_two[$i]=ereg_replace("<[^>]*>|[^>]*>|>","",$bibbit_two[$i]);
?>
and now nothing at all is going into the array. Do you know where I can find documentation on the syntax of the preg regex's?