欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 与mysql 连接

程序员文章站 2022-04-27 20:45:07
...
$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 ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了php 与mysql 连接,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。