mysql_num_rows giving error “mysql_num_rows() expects parameter 1 to be resource”

前端 未结 3 1017
你的背包
你的背包 2021-01-25 07:39
public function doesUserExist($u) {

    $this->dbConnect();

    mysql_select_db($this->database);

    $sUser = mysql_real_escape_string($u);

    $query = \"SEL         


        
3条回答
  •  攒了一身酷
    2021-01-25 08:27

    You should use the mysql_query before getting the number of rows.

    Follow the Link below: http://php.net/manual/en/function.mysql-num-rows.php

    For example :

    $query = "SELECT username FROM $this->table WHERE username='$sUser'";
    $result = mysql_query($query);  
    $num_rows = mysql_num_rows($result);  
    

提交回复
热议问题