News Feed
Jobs Feed
Sections



Recent Jobs

News Archive
PHP in Action Blog:
Flash Messages
June 02, 2008 @ 13:44:50

On the PHP in Action blog Dagfinn Reiersol shares a method to send messages across a POST request that's followed by a redirect (versus a simple GET where it can be in the URL).

When processing a GET request, you can display whatever messages you want. The most simplistic way is to echo them directly; or if just slightly more sophisticated, set it in the template that's about to become the web page. When processing a POST request that is to be followed by a redirect, you can't do that. The response (redirect) sent back to the browser does not have any text or HTML content.

He points out two different ways to handle the problem - either manually append the message to the URL you're redirecting to or (a bit better method) store it in a session variable and remove it once its done. Several frameworks call this a "flash message". He gives examples of how to set this in two popular frameworks - Zend Framework and CakePHP.

0 comments voice your opinion now!
framework zendframework cakephp message post get redirect session




Community Events





Don't see your event here?
Let us know!


community custom phpunit release conference opinion unittest language manifesto test symfony2 application introduction podcast framework package api development series interview

All content copyright, 2012 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework