sql数据获取bug

时间:2016-03-17 12:43:10

标签: php sql

我有两页。在第一页中,如果用户点击按钮,那么他将获得id列为

的相关数据
<form action='edit.php?id=$id' method='post' name='edit_btn'> 
<button type='submit' class='w3-btn w3-red w3-round-xlarge'>Proceed </button> 
</form>   

        $con=mysqli_connect("localhost","root","","student_result_info_db");if (mysqli_connect_errno()){ echo "Failed to connect to MySQL: " . mysqli_connect_error(); }else{ 
          if(isset($_GET['edit_btn'])){
              echo "<div class='w3-container w3-red'> <h1>>Error Found!</h1> <h4>OK You Did Hit The EDIT Button</h4> </div> <br/>";
          }else{  
             $get_selected_id = $_GET['id'];
             echo $get_selected_id;

             $res = "SELECT * FROM school_result";


                 while ($row = mysql_fetch_array($res)){
                     echo "$row[id]. $row[first_name] <br/>";
                     echo "$row[id]. $row[last_name] <br/>";
                 } 
          }
    }

显示以下错误

  

致命错误:在

中调用未定义的函数mysql_fetch_array()

2 个答案:

答案 0 :(得分:0)

使用mysqli_fetch_array代替mysqli_query获取mysqli_result对象:

$qresult = mysqli_query($con, $res);
while ($row = mysqli_fetch_array($qresult)){

你需要使用它有两个原因:

  1. 您使用mysqli_connect打开了数据库,因此需要使用mysqli函数。

  2. 在PHP 7中删除了
  3. mysql个函数。

答案 1 :(得分:0)

使用mysqli函数代替mysql,如

mysqli_query($con, $res);