标签: php mysql sql
我使用PHP / SQL查询将数据插入MySQL表中,当我使用£(磅)符号时,它会插入Â字符,所以它看起来像
£
Â
£ then the rest of the string
我的SQL查询很简单:
$sql="INSERT into table (column1, column2) values (value1, value2)"; $rs=mysql_query($sql,$conn);
有什么方法可以阻止Â插入MySQL表吗?
由于