Ando trabajando con CodeIgniter, dando los primeros pasos y tengo la siguiente clase constroladora:
Código PHP:
Ver original
<?php class User extends Controller { function User() { parent::__construct(); $this->load->model('user_model'); } public function index() { $data['rows'] = $this->user_model->get_all(); $data['title'] = 'Lista de usuarios'; $this->load->view('users',$data); } public function show($id) { $data['rows'] = $this->user_model->get_user($id); $data['title'] = 'Editar usuario'; $this->load->view('edit_user', $data); } public function edit() { $this->load->library('validation'); $rules['username'] = 'required'; $rules['name'] = 'required'; $rules['status'] = 'required'; $rules['id'] = 'required'; $this->validation->set_rules($rules); if( $this->validation->run() == FALSE ) $ALGO;//ACA else $ALgo;//ACA } } /* End of file user.php */ /* Location: ./system/application/controllers/user.php */
El inconveniente lo presenta el método "edit", ya que si el formulario se no se ha enviado correctamente y/o no se cumple alguna de las reglas quisiera que se devolviera a la vista edit_user, pero esta vista recibe una data que en principio es enviada por el método "show" de esta misma clase, no sé como de esta funcion edit invocar el método show enviandole así el "id" para que me vuelva a cargar la información del usuario.
Espero me puedan colaborar, no he encontrado sino como llamar una vista, pero en realidad necesito es enviar la data como en el método show.
Pego la vista edit_user por si acaso:
Código PHP:
Ver original
<html> <head> <title><?php echo $title; ?></title> <meta http-equiv="Content-Type" content="text/html charset=UTF-8"> </head> <body> <h3><?php echo $title; ?></h3> <hr /> <?php foreach ($rows as $row) { echo form_open('user/edit', $hidden); ?> <table border="1"> <tr align="center"> <td>Username</td> <td> <?php 'name' => 'username', 'id' => 'username', 'value' => set_value('username', $row->username), 'maxlenght' => '40', 'size' => '20' ); echo form_input($username); ?> </td> </tr> <tr align="center"> <td>Name</td> <td> <?php 'name' => 'name', 'id' => 'name', 'value' => set_value('name', $row->name), 'maxlenght' => '40', 'size' => '20' ); echo form_input($name); ?> </td> </tr> <tr align="center"> <td>Status</td> <td> <?php '1' => 'Activo', '2' => 'Inactivo' ); echo form_dropdown('status', $options, $row->status); ?> </td> </tr> <tr align="center"> <td>Dated created</td> <td><?php echo $row->date_created; ?></td> </tr> <tr> <td colspan="2"><?php echo form_submit('btnedit', 'Guardar cambios'); ?></td> </tr> </table> <?php echo form_close(); ?> <?php } ?> </body> </html>