I am inserting data into a MySQL Table using PHP/SQL Queries and when i use a £ (pound) symbol its inserting a  character before so it looks like
£ then the rest of the string
My SQL Query is just simple:
$sql="INSERT into table (column1, column2) values (value1, value2)";
$rs=mysql_query($sql,$conn);
is there any way i can stop the  from inserting into the MySQL table?
Thanks