最新下载
热门教程
- 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 |
"
";
}
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20