同学代码为什么可以实现?
<?php
//连接数据库
error_reporting(0);
mysql_connect('127.0.0.1', 'code1', '');
mysql_select_db('code1');
mysql_query("set names 'utf8'");
//在这里进行数据查询
$res=mysql_query('select * from user limit 1');
$row=mysql_fetch_array($res);
var_dump($row);