shane18 Posted October 26, 2009 Share Posted October 26, 2009 1. Set up all databases, tables, and columns as utf8 2. Save all PHP scripts in UTF-8 without BOM. 3. Declare all HTML pages encodings as utf8 4. Set up PHP to MySQL connection as utf8 - for mysql_connect mysql_connect('','',''); mysql_query("SET NAMES 'utf8'"); - for mysqli $db = new mysqli('','','',''); $db->set_charset('utf8'); Is there any other php/mysql settings I must check to make sure my site is fully UTF-8, or is that all I need to check. Link to comment https://forums.phpfreaks.com/topic/179075-solved-mysql-settings/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.