save the return page of a form with search criteria & url parameters


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // guardamos en el controlador del edit el referer
  2. $this->set('returnTo', $this->referer());
  3.  
  4. // si en el form necesitamos poner links para cancelar hacemos...
  5. link(__('Return to Admin Index', true), $returnTo);?>
  6.  
  7. // en el formulario incluimos un campo oculto para recuperar luego el valor
  8. input('App.returnTo', array('type' => 'hidden', 'value' => $returnTo)); ?>
  9.  
  10. // y luego de procesar el formulario redireccionamos
  11. if (isset($this->data['App']['returnTo'])) {
  12. $this->redirect($this->data['App']['returnTo']);
  13. }

URL: http://cakephpilia.blogspot.com/2009/08/volver-la-pagina-correcta-y-la.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.