I cannot insert special characters. Whenever I try, all characters BEFORE adding a special character, but nothing is entered into the field after the special character.
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die('Error connecting to mysql'); mysql_select_db($dbname,$conn); mysql_set_charset('utf-8', $conn); mysql_query("SET NAMES 'utf8'") or die(mysql_error()); mysql_query("SET CHARACTER SET 'utf8'") or die(mysql_error());
I set up a table to sort utf-8 and all fields ...
Any thoughts?
thanks
user188962
source share