-1

I built a simple user registration form using Xtml, php Myadmin.i expect all the field to blank prior to inputing data.But each time i refresh the user registration page some field on the form will be pre filled. . What should i do so that form field should be blank prior to inputing data?

1 Answers1

-1

You can use the autocomplete tag like this

<input type="text" name="bar" autocomplete="off" />

To turn this browser behaviour off. Be aware that this does not work completely at some Firefox versions.

Niki van Stein
  • 10,564
  • 3
  • 29
  • 62