mysql hatası getir

2 Cevap
    <? 
    $res = $database->userLatestStatus($u);
    while($row=mysql_fetch_assoc($res)){
       $status=$row['status'];
       echo "$status";
    }
    ?>

This is the code on my page, which is throwing up the following error: Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource....

Veritabanı işlevi:

   function userLatestStatus($u)
   {
       $q = "SELECT status FROM ".TBL_STATUS." WHERE userid = '$u' DESC LIMIT 1";
       return mysql_query($q, $this->connection);
   }

Herhangi bir sorun fikirleri ne?

2 Cevap

ORDER BY UPDATETIME DESC gibi bir sorgu kullanın veya kaldırmak DESC