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

php操作数据库的简单示例

程序员文章站 2022-04-28 15:26:30
...
  1. //1,连接数据库

  2. $conn = mysql_connect('127.0.0.1','root','root');
  3. if(!$conn){
  4. die("连接失败".mysql_error);
  5. }
  6. //2,选择数据库

  7. mysql_select_db("test");
  8. //3,发送操作语句

  9. $sql="select * from user";
  10. //4,接收结果

  11. $res=mysql_query($sql,$conn);
  12. //5,遍历结果

  13. while($row=mysql_fetch_row($res)){
  14. echo "
    $row[0]--$row[1]--$row[2]";
  15. } // bbs.it-home.org
  16. //6,关闭

  17. mysql_free_result($res);
  18. mysql_close($conn);
  19. ?>
复制代码