Skip to content Skip to sidebar Skip to footer

Don't Save Form Data Over Https

I'd like to submit data in a form, over HTTPS, without allowing the browser to save it. (credit card transactions)

Solution 1:

You mean autocomplete="off"? Or cookie data?

Solution 2:

Please try the following code:

< form id="login_form" action="login.php" method="post" autocomplete="off">

Post a Comment for "Don't Save Form Data Over Https"