i have a title field for mysql field as this
Newyork\' s best place
it seems
Newyork\ s best place
i want to change it as
Mewyork's best place
i make this but it doesn't work
str_replace("\'", "'", $title);
Any suggestions?
Look this site title: http://www.kusadasisehirrehberi.com/
Orijinal codes
functions.php
default:
$baslik=mysql_fetch_row(mysql_query("SELECT title from ayar where id=1 limit 0,1"));
$title=title_temizle($baslik['0']);
$title=str_replace("\'", "'", $title);
}
return $title;
}
header.php
<title><?php echo $title ?> </title>
You need to escape backslash - \ too, because in your case you are escaping ampersand symbol - &