esto
Código PHP:
public static function getClientes()
{
$obj_cliente=new sQuery();
$obj_cliente->executeQuery("select * from clientes"); // ejecuta la consulta para traer al cliente
return $obj_cliente->fetchAll(); // retorna todos los clientes
}
Código PHP:
public static function getClientes()
{
$obj_cliente=new sQuery();
$this->executeQuery("select * from clientes"); // ejecuta la consulta para traer al cliente
return $this_cliente->fetchAll(); // retorna todos los clientes
}
LO DIGO POR EL "THIS"