redirect with POST

Hi!

I would like to use redirect, with passing some sensitive information, is there a way to do it with POST and not GET method?

No, is not possible.

You can save in the session and read in the new page.

You can build and submit a form via JavaScript.

Could you give me a hint, where i can read on how to do that?

Just use


Yii::app()->user->setState('param1', 'value')

and


Yii::app()->user->getState('param1')

I just did that, and it works perfectly. Thanks for the help!