首页 > 数据库 > MySQL > 正文

PHP MYSQLI实现简单的增 删 改 查性能

2024-07-24 12:36:06
字体:
来源:转载
供稿:网友
  <title>index.php</title>
 
 
  <?php
      #连接数据库
      $conn = mysqli_connect("localhost","root","");
      
      #判断是否连接成功
      if(!$conn){
          echo "失败";
      }
      
      //选择数据库
      mysqli_select_db($conn,"bbs");
      
      //准备sql语句
      $sql = "select * from bbs_user";
     
  点击删除:
 
  <title>del.php</title>
 
  <?php
 
      $id =$_GET['id'];
      $link = mysqli_connect('localhost','root','');
      if(!$link){
          exit('连接失败');
      }
      
      mysqli_select_db($link,'bbs');
      $sql = "delete from bbs_user where id =$id";
      $result = mysqli_query($link,$sql);
      if($result && mysqli_affected_rows($link)){
          echo "删除成功<a href = 'index.php'>返回</a>";
      }else{
          echo "删除失败";
      }
 
      mysqli_close($link);
  ?>

(编辑:武林网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表