<?
$string = eregi_replace("&", "#038", $string);
?>
try that
were it says #038 add a ; at then end, and a & infront I cant post it here or it will show a &, thats the anscii number for &
if that still doesnt work then try this
<?
$string = eregi_replace("&", "#038", $string);
?>
then in the next page id do another replace with
<?
$string = eregi_replace("#038", "&", $string);
?>