最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php mysql数据库操作教程
时间:2022-06-24 19:07:54 编辑:袖梨 来源:一聚教程网
//连接mysql数据库
代码如下 | 复制代码 |
$link = mysql_connect("localhost", "mysql_user", "mysql_password") or die("could not connect: " . mysql_error()); print ("connected successfully"); mysql_close($link); |
//查询mysql字段名
代码如下 | 复制代码 |
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); $fields = mysql_list_fields("database1", "table1", $link); for ($i = 0; $i < $columns; $i++) { |
//查询数据
代码如下 | 复制代码 |
$conn=mysql_connect("localhost","phpdb","phpdb") or die("不能连接数据库服务器: ".mysql_error()); mysql_select_db("test",$conn) or die ("不能选择数据库: ".mysql_error()); $result = mysql_query("select * from user",$conn); while($row=mysql_fetch_array($result)){ print "name:".$row[1]; print " address:".$row[3]; print " tel:".$row[4]; print " email:".$row[5]; echo |
"
";
}
相关文章
- 《职场浮生记》卡牌模组推荐 06-15
- 《纸嫁衣4红丝缠》全章节图文攻略 06-15
- 《这城有良田》奖率三军课业加点攻略 06-15
- 《纸嫁衣2奘铃村》全章节攻略汇总 06-15
- 《王者荣耀》夺宝保底次数介绍 06-15
- 《向僵尸开炮》百分比宝石选择推荐 06-15