I have a PHP page that has a login form (so obviously using POST method). In order to get rid of the classical problem where the user can go back and do a refresh to reload the page even after sign-out, what I am doing is that basically opening a new window as the form target (and on logout, I do a self.close();).
The PHP page submits Post data to a JSP page.
Is there a better way of doing this all such that I don't have to open a new window?
The PHP page submits Post data to a JSP page.
Is there a better way of doing this all such that I don't have to open a new window?
Comment