My script containing that error is this:
$stmt = $this->db->prepare('SELECT libelle,activite,adresse,tel,lat,lng FROM etablissements where type IN ('.$in_list.')');
$stmt->execute();
$stmt->bind_result($libelle,$activite,$adresse,$tel,$lat,$lng);
The php version running on the server (not localhost) is 5.2.17
$stmtis supposed to be an object with the methodexecute().Seems like
$this->db->prepare()is not returning the good result.If
$this->dbis amysqli()object you should bind the parameters like that: