当前位置:首页 > PHP教程 > php应用 > 列表

实例讲解php数据访问

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-02 14:01:14 浏览: 评论:0 

这篇文章主要以实例讲解的方式为大家详细介绍了php数据访问,数据访问有两种方式,本文为大家揭晓,感兴趣的小伙伴们可以参考一下。

本文实例为大家分享了两种php数据访问方式,大家可以进行比较,分析两种方式的异同,最后为大家提供了一个小练习,具体内容如下。

方式一:已过时,只做了解

1.造一个连接(建立通道)

$db=mysql_connect("localhost","root","123");     //括号内是“服务器地址”,“用户名”,“密码”

2.选择操作哪个数据库

mysql_select_db("mydb","$db");

3.写sql语句

$sql="select * from Info";

4.执行sql语句

$result=mysql_query($sql);      //query 有查询之意

5.从结果集($result)中取数据

  1. $row=mysql_fetch_row($result);  //每执行一次读取一行数据 
  2.  
  3. $row1=mysql_fentch_row($result);  //执行第二条数据 
  4.  
  5. var_dump($row); 
  6.  
  7. //读取全部数据用循环: 
  8.  
  9. while($row=mysql_fetch_row($result)) 
  10.  
  11.  
  12.   var_dump($row);   
  13.  

方法二:面向对象

1.造一个连接对象:

$db=new MySQLi("localhost","root","123","mydb")  //括号内的内容依次为“服务器地址”,“用户名”,“密码”,“数据库名称”

2.判断连接是否出错:

2.1 mysqli_connect_error();  //代表连接出错

2.2

  1. if(mysqli_connect_erroe()) 
  2.  
  3.        { 
  4.  
  5.     echo "连接失败!"
  6.  
  7.     exit();  //退出程序 
  8.  
  9.         } 

2.3 !mysqli_connect_error or die ("连接失败!"); //“or”前面代表连接正确,后面代表连接失败

3. 写sql语句:

$sql="select * from nation";

4. 执行sql语句:如果执行成功返回结果集对象,如果执行失败返回false

$result=$db->query($sql);

5.从结果集中读取数据,先判断是否有数据

  1. if($result
  2.  
  3.  
  4.   //返回一行数据的索引数组,每次执行返回一条数据 
  5.  
  6.    var_dump($result->fetch_row());  
  7.  
  8.   while($row=$result->fetch_row) 
  9.  
  10.   { 
  11.  
  12.     var_dump($row); 
  13.  
  14.   } 
  15.  
  16.   //返回一行数据的关联数组,每次执行返回一条数据 
  17.  
  18.   var_dump($result->fetch_row());  
  19.  
  20.   //通过二维数组返回所有数据 
  21.  
  22.   var_dump($result->fetch_all()); 
  23.  
  24.   //以对象的方式返回一行数据 
  25.  
  26.   var_dump($result->fetch_object()); 
  27.  

练习:

1.以下拉菜单的形式在页面显示nation表

  1. $db=new MySQLi("localhost","root","","mydb"); 
  2.  
  3. !mysqli_connection_erroe() or die ("连接失败!"); 
  4.  
  5. $sql="select*from nation"
  6.  
  7. $result=$db->query($sql); 
  8.  
  9. if($result
  10.  
  11.  
  12.   $att=$result->fetch_all(); 
  13.  
  14.   echo "<select>"
  15.  
  16.   foreach ($att as $value
  17.  
  18.   { 
  19.  
  20.     echo "<option value='{$value[0]}'>{$value[1]}</option>"
  21.  
  22.   } 
  23.  
  24.   echo "</select>"
  25.  

2. 把Info表查出来,以表格的形式显示

  1. $db=new MySQLi("localhost","root","","mydb"); 
  2.  
  3. !mysqli_connecton_error() or die("连接失败!"); 
  4.  
  5. $sql="select * from info"
  6.  
  7. $result=$bd->query($sql); 
  8.  
  9. if($result
  10.  
  11.  
  12. $att=$result->fetch_all(); 
  13.  
  14. echo "<table border='1' width='100%' cellpadding='0' cellspacing='0'>"
  15.  
  16. echo "<tr><td>代号</td><td>姓名</td><td>性别</td><td>民族</td><td>生日</td></tr>"
  17.  
  18. foreach ($att as $value
  19.  
  20.  
  21.  echo "<tr> 
  22.  
  23. <td>{$value[0]}</td> 
  24.  
  25. <td>{$value[1]}</td> 
  26.  
  27. <td>{$value[2]}</td> 
  28.  
  29. <td>{$value[3]}</td> 
  30.  
  31. <td>{$value[4]}</td> 
  32.  
  33. </tr>"; 
  34.  
  35.  
  36. echo "</table>"
  37.  
  38.  
  39.    
  40.  
  41. //也可以用for循环 
  42.  
  43. if($result
  44.   $arr=$result->fetch_all(); 
  45.   echo "<table border='1' width='100%' cellpadding='0' cellspacing='0'>"
  46.   echo "<tr><td>Code</td><td>Name</td><td>Sex</td><td>Nation</td><td>Birthday</td></tr>"
  47.   for($i=0;$i<count($arr);$i++) 
  48.   { 
  49.     echo "<tr> 
  50.     <td>{$arr[$i][0]}</td> 
  51.     <td>{$arr[$i][1]}</td> 
  52.     <td>{$arr[$i][2]}</td> 
  53.     <td>{$arr[$i][3]}</td> 
  54.     <td>{$arr[$i][4]}</td>  
  55.     </tr>"; 
  56.   } 
  57.   echo "</table>"

以上就是本文的全部内容,希望对大家学习php程序设计有所帮助。

Tags: php数据访问

分享到: