gracias por responder, agregue estos métodos a la clase:
Código PHP:
public function set_secure($string){
if(is_string($string)){
$this->secure = true;
return mysql_real_escape_string(stripslashes(trim($string)));
}
}
public function ejecutar($sql){
if(is_string($sql)){
if($this->secure){
$this->stmt=mysql_query($sql,$this->link) or die(mysql_error());
return $this->stmt;
}else{
exit('La consulta ejecutada está prohibida');
}
}
}
Pero cuando hago un simple :
$sql='SELECT * FROM productos';
$stmt=$bd->ejecutar($sql);
siempre me devuelve que "la consulta es prohibida..."