Jump to content

[SOLVED] MySQL Settings


shane18

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.