Re: [PHP] sessions and browser back[Scanned]

2003-06-26 Thread SLanger
As a suggestion can you simply redisplay your form on the error page and such avoid having to use the back button? This would also allow you to actually display the error at the place the error occurs. Another thing you might want to try is using a cache header that allows the browser to cache t

Re: [PHP] sessions and browser back[Scanned]

2003-06-25 Thread Bibhas Kumar Samanta
Thanks Michael, Can you suggest any other method (without using session_start) by which I can track users and validate for each page. What I do currently , in the login page register the user using sessions and in other pages see if user is registered. I need to restrict each page based on mysql

RE: [PHP] sessions and browser back[Scanned]

2003-06-25 Thread Michael Egan
Bibhas, I'm sure I've read somewhere that this is a deliberate security feature with using sessions - i.e. you can't view contents of form fields by using the back button on your browser. Couldn't you use JavaScript to ensure that the data is validated on the client side before the form is sub