elvman on 08/17/11
Last Edited at 08/17/11 07:06pm
define('HOST', 'localhost');define('USER', 'root');define('PASS', 'root');define('DATABASE', 'analytics');define('ENCODING', 'utf8'); $database = new mysqli(HOST, USER, PASS, DATABASE);$database->query('SET NAMES '.ENCODING);
Report this snippet Tweet
Comment:
You need to login to post a comment.