public function pruebacrearJsonAction() { $model = new Estaciones(); $resul = $model->lista(); $customers = array(); $customers['titulo'] = 'Lista de Estaciones'; $customers['fecha'] = date("d-m-Y H:i:s"); foreach ($resul as $v) { $customers['estaciones'][] = array('id' => $v->id, 'linea_id' => $v->linea_id, 'linea' => $v->linea, 'estacion' => $v->estacion); } $x = json_encode($customers); $handler = fopen("file/estaciones.json", "w+"); fwrite($handler, $x); fclose($handler); }
public function select_estacionesAction() { $resul = Estaciones::find(array('baja_logica = 1 and linea_id=' . $_POST['linea_id'], 'order' => 'id ASC')); $this->view->disable(); $options = '<option value="">(Seleccionar)</option>'; foreach ($resul as $v) { $options .= '<option value="' . $v->id . '" >' . $v->estacion . '</option>'; } echo $options; }