pues les cuento que sigue dando el mismo problema ahora si que me voy a volver loco
fijense lo hice como lo plantie y sin embargo me da el mismo problema
Código PHP:
Ver originalpublic function selectAll($table,$condicion=NULL){
$this->_result
[]=array(); try{
/*$site_path = realpath(dirname(__FILE__)).'\config.ini';
$this->_conect=DatabaseFactory::create($site_path);*/
{
$this->_query=$this->_conect->prepare("SELECT * FROM $table");
$this->_query->execute();
}
else{
$this->_query=$this->_conect->prepare("SELECT * FROM $table WHERE $condicion");
$this->_query->execute();
}
while($this->_row=$this->_query->fetch()){
$this->_result[]=$this->_row;
}
//$this->_conect="";
return $this->_result;
}
catch(PDOExeption $e){
echo $e->getMessaage();
}
}
public function ejecutarSentencia($query,$parametro=NULL,$return=true)
{
$this->_result
[]=array(); try{
/*$site_path = realpath(dirname(__FILE__)).'\config.ini';
$this->_conect=DatabaseFactory::create($site_path);*/
//$this->_conect=DatabaseFactory::create('C:/xampp/htdocs/taquilla/ayuda/clase_conexion_bien_echa/config.ini');
/*$site_path = realpath(dirname(__FILE__)).'\config.ini';
$this->_conect=DatabaseFactory::create($site_path);*/
$this->_query=$this->_conect->prepare($query);
$this->_query->execute($parametro);
if($return==true){
while($this->_row=$this->_query->fetch()){
$this->_result[]=$this->_row;
}
//$this->_conect="";
return $this->_result;
}
else{
//$this->_conect="";
return $this->_query;
}
}
catch(PDOExeption $e){
echo $e->getMessaage();
}
}
tambien lo intente colocandolo igual a blanco, iguale tambien $this->_row tambien por si era lo que pasaba y nada, que podra ser?? no le habia parado mucho porque sencillamente para verificar los datos hago un print_r de lo que traiga en la consulta pero eso no es el echo, deberia de traerme solo los datos que pido de manera optima xq si cree esto fue para ahorrarme trabajo no para darme
que podra ser una ayuda por favor xq ya yo no veo el dilema saludos