1
How do I print a message when opening a page, for example:
I’m on the page Cliente/View
and when redirected to the page Nfe/index
, I want to print a message with instructions on what should be done, pulling some data from the Cliente/View
.
I tried to use the
$this->Session->setFlash('mensagem');
But I continued without results, only displayed the message when I return to the page Cliente/View
again.
Dude I tested it here and it only works if it has it in it
controller
, if theView
is incontroller
different, this does not work.– Marcos Henzel