I am using the POST/REDIRECT/GET pattern in my application. However, I have a problem:

In case I want to display a message at the GET stage, I can store it as as session variable at the POST stage (when it is decided what message should be displayed), for example $_SESSION['message']='mplampla';

Using this technique, the message should be unset after being displayed in order not to display it again erroneously in other pages. But if user the goes back and then forward to the GET page again, the message won't display the second time as it has been unset the first time around.

I don't know how other websites manage this... I have seen a web site with a registration form, which displays a message after successful registration under the same URL and works correctly when doing back/forward.

link|improve this question

I might be misunderstanding but if you unset the session then it wont show anymore because it doesn't exist... – sabre Nov 28 '10 at 15:08
unset after getting the message – Parhs Nov 28 '10 at 15:18
feedback

1 Answer

up vote 4 down vote accepted

Don't store the message in $_SESSION. Instead, pass it as a parameter to your GET page.

For example, in the GET stage, redirect the user to

http://localhost/widget.php?edit=1&message=saved

Then, in widget.php do:

$message = isset($_GET['message']) ? $_GET['message'] : null;
$output = null;
switch($message) {
    case 'completed': // possibly use a constant here, eg MESSAGE_COMPLETED
        $output = 'Your changes has been saved.';
        break;
    case 'failed':
        $output = 'ERROR: failed to save changes!';
        break;
}

// Now present $output to the user anyway you like

If the user goes back and forward, the message will still be displayed just fine. It also avoids any problems having to do with session state.

link|improve this answer
1  
thank yoy for the suggestion.. However could you check how this works ?? secure.plaisio.gr/User/register.aspx?ReturnUrl=/Controls/… it goes back and forward i dont know how when registered:S – Parhs Nov 28 '10 at 15:10
Μην περιμένεις να κάνουμε και όλη τη δουλειά μόνοι μας... :) – Jon Nov 28 '10 at 15:12
Δε σου ζητησα να γραψεις κωδικα, αν εχεις ιδεα πως γινεται με το ιδιο url να βγαζει αλλο μηνυμα οπως κανουν στο πλαισιο! – Parhs Nov 28 '10 at 15:18
I don't quite understand what I 'm supposed to see in the plaisio.gr page... – Jon Nov 28 '10 at 15:35
That you can register and then although browser has the same url you can go back and forward and still display different pages and browser doesnt ask for posting again the data – Parhs Nov 28 '10 at 15:38
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.