Calling action in a different Controller

Is it possible to call the action in a different Controller. I tried redirect but cannot pass the $_POST with it. Any solution?

See: http://www.yiiframework.com/doc/api/1.0.10/CWebApplication#runController-detail

On the other hand consider making a class from the action and you can add it to both controllers.

http://www.yiiframework.com/doc/guide/basics.controller#action

I ended up Extending the controller but I had to duplicate the view.

Thanks a lot, I will look into your recommendation.

runController redirects the screen, it does not do what I intended for.