Example #1
0
 function Busqueda()
 {
     $nrol = $_REQUEST['txtBusqueda'];
     $data = new Rol();
     $rol = $data->buscarxrol($nrol);
     $datos['roles'] = $rol;
     $this->view->show("rol/listado.phtml", $datos);
     $this->view->show("rol/lista.phtml", $datos);
 }