bien cambiando un poco y leyendo por internet mas llegue a esto
Código PHP:
Ver originalclass Consulta{
# AQUI EJECUTAMOS LA CONSULTA
private $variable = array();
public function whil($sql1){
$sql = $sql1;
$this->variable[] = $reg;
}
return $this->variable;
}
}
lo llamo asi
Código PHP:
Ver originalclass pepito {
private $armar;
public function __construct(){
$this->armar = new Consulta();
}
public function llamarcat(){
//$sql = "SELECT * from tabla";
$this->armar->whil("SELECT * TABLA");
/*while($reg = mysql_fetch_assoc($res)){
$this->categorias[] = $reg;
}
return $this->categorias; */
}
}
ahora lo chistoso es que no me muestra nada... alguna ayudita??