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/179087-solved-phpmysql-settings/ Share on other sites More sharing options...
shane18 Posted October 26, 2009 Author Share Posted October 26, 2009 Like on phpmyadmin the MySQL connection collation is utf8_unicode_ci... wtf is MySQL connection collation Link to comment https://forums.phpfreaks.com/topic/179087-solved-phpmysql-settings/#findComment-944868 Share on other sites More sharing options...
shane18 Posted October 26, 2009 Author Share Posted October 26, 2009 So is my check list like not missing anything since no one is replying..... Link to comment https://forums.phpfreaks.com/topic/179087-solved-phpmysql-settings/#findComment-944880 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.