Hello,
I am trying to have php change all ` characters to a ' in my mysql db.
I assume it is an escaping issue, but i am not familiar with it enough to know for sure.
Here is what i have but it is not working:
<?php
$mysql=new MySQL();
$result=$mysql->query("UPDATE news SET title = replace(title, "’", "'")");
?>
Can anyone set me straight? Thanks so much for your help.