作者:落地有声800_491_431 | 来源:互联网 | 2017-05-13 02:17
$db_host='localhost'; //数据库主机$db_database='test'; //数据库名$db_username='root'; //账户名$db_password=''; //密码$connection=mysql_connect($db_host,$db_username,$db_password);//连接到数据库
mysql_query("set names 'utf8'");//编码转化if(!$connection){
die("could not connect to the database:".mysql_error());//诊断连接错误}
$db_selecct=mysql_select_db($db_database);//选择数据库if(!$db_selecct)
{
die("could not to the database".mysql_error());
}
$query="select * from eload_category ";//构建查询语句$result=mysql_query($query);//执行查询if(!$result)
{
die("could not to the database".mysql_error());
}
print_r(mysql_fetch_array($result));
用mysql_query查询的结果并不能直接输出,会打印出Resource id #4。
用mysql_fetch_array转换成数组在输出
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('
').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了php 与mysql 连接,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。