Hello, i want to create flash messages
At services file i have
$di->set( 'flash', function () { return new Phalcon\Flash\Direct(array( 'error' => 'alert alert-dismissable alert-danger', 'success' => 'alert alert-dismissable alert-success', 'notice' => 'alert alert-dismissable alert-info', )); } );
At controller i am doing
$this->flash->success("Edit Successfull"); $this->dispatcher->forward(array( 'controller' => 'test', 'action' => 'edit', 'params'=>array($hotel_id) ));
And it works, but the url is changed to test/update from test/edit/id
What i want is the url remain to test/edit/id
cheers