Olmayan bir nesne üzerinde mysql gibi bind_param ()

0 Cevap php
    $id='gsf';
$stmt=$mysqli->prepare('SELECT `title` FROM `post` WHERE (`content` LIKE `%?%`) and accepted=0 order by count desc Limit 0,5');
      $stmt->bind_param('s',$id);
      $stmt->execute();
      $stmt->bind_result($title);
      while($stmt->fetch();)
    {
      echo $title."<br>";         
      }
      $stmt->close();
      $mysqli->close();

Bu i olmayan bir nesne üzerinde bir üye işlev bind_param bu hata Çağrı () olsun çalıştırmak Bir Php Snippet tavuk olduğunu

ne ben dışarı eksik?

0 Cevap