[PHP] Page Reload with after POST request

2003-10-23 Thread Alexander Mueller
I am doing most of my data transfers by POST requests and found it to be problematic when I want to browse the history with the browser's navigation buttons. Although it works without problems in Opera (I didnt try it with Netscape) it leads to a Warning: Page has Expired message in IE. I

Re: [PHP] Page Reload with after POST request

2003-10-23 Thread Marek Kilimajer
After handling the post request and taking the necessery actions (update db...), redirect the browser using header('Location: ..'); Alexander Mueller wrote: I am doing most of my data transfers by POST requests and found it to be problematic when I want to browse the history with the