Z2021-09-18 14:32:07
可以参考下
<?php$con = mysql_connect("localhost","root","password");$select_db = mysql_select_db('test');if (!$select_db) { die("could not connect to the db:\n" . mysql_error());}//查询代码$sql = "select * from db_table";$res = mysql_query($sql);if (!$res) { die("could get the res:\n" . mysql_error());}while ($row = mysql_fetch_assoc($res)) { print_r($row);}//查询代码//关闭数据库连接mysql_close($con);?>
yntdx2021-09-08 09:49:10
其实用小鸟云服务器部署PHP环境,连接MYSQL数据库有几种常用的办法,这里就整理了一种最普通的:$mysql_server="localhost";$mysql_username="数据库用户名";$mysql_password="数据库密码";$mysql_database="数据库名";//建立数据库链接//选择某个数据库//执行MySQL语句//提取数据