--- vet_smpc.php 2001/11/07 10:49:03 1.3 +++ vet_smpc.php 2002/01/10 16:48:24 1.4 @@ -15,7 +15,10 @@ $sth = $dbh->prepare("select brand,form from vet_products where smpc=$smpc"); $sth->execute(); - if ($row=$sth->fetchrow_hash()) $title.=" : $row[brand] $row[form]"; + if ($row=$sth->fetchrow_hash()) { + $title.=" : $row[brand] $row[form]"; + $title=str_replace("®","®",$title); + } } $smarty->assign( array ( lpic=>$lpic, lext=>$lext, mpic=>$mpic, Section_title=>$title ) ); @@ -23,6 +26,7 @@ include("find_html_file.inc"); if (file_exists(find_html_file("vet",$smpc))) { $main=join('',file(find_html_file("vet",$smpc))); +# $main=str_replace("Â","",$main); // hm? $main=str_replace("®","®",$main); }