标签:
<?php $con = mysql_connect("localhost","root","12345"); $dbcharset = "utf8"; mysql_query("SET character_set_connection=$dbcharset, character_set_results=$dbcharset, character_set_client=binary"); if (!$con) { die(‘Could not connect: ‘ . mysql_error()); } // some code mysql_select_db("my_db", $con); ?>
标签:
原文地址:http://www.cnblogs.com/winderby/p/4286186.html