1

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

(credit card transactions)

Kevin
  • 13,153
  • 11
  • 60
  • 87
Luke Burns
  • 1,911
  • 3
  • 24
  • 30

2 Answers2

2

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

Kevin
  • 13,153
  • 11
  • 60
  • 87
  • I don't want the browser to save information such as credit cards. So will auto complete not save it? – Luke Burns Mar 23 '10 at 23:16
  • Autocomplete would stop it from giving a dropdown of values previously entered. Beyond that, its more of a browser setting. Check this out http://www.petefreitag.com/item/481.cfm – Kevin Mar 23 '10 at 23:19
0

Please try the following code:

< form id="login_form" action="login.php" method="post" autocomplete="off">
Pang
  • 9,564
  • 146
  • 81
  • 122
Farid Bangash
  • 84
  • 1
  • 7