-2

i want to get rid of the auto fill in

i am new to html and i cant ix my problem. if you dont understand me ill be more than happy to send a screenshot using gmail.

<FORM action="Database.php" method="GET">
<LABEL>First Name</LABEL>
<input type="text" name="firstName">
<br>

Last Name

1 Answers1

1

just use autocomplete="off" in your tag like this

<input type="text" name="firstName" autocomplete="off">

to know more visit this

Salman Zafar
  • 3,079
  • 4
  • 15
  • 35