Don't save form data over https
开发者_JAVA技巧I'd like to submit data in a form, over HTTPS, without allowing the browser to save it.
(credit card transactions)
You mean autocomplete="off"? Or cookie data?
Please try the following code:
< form id="login_form" action="login.php" method="post" autocomplete="off">
精彩评论