Hi, I have created a registration page recently for webinar purpose. If someone registered once and come back to the registration form again, auto complete appears in all the fields when he double click on each field or press the down arrow key in each field. Could you any of help me to sort this out? Thanks,
Should I use it many times? like <td width="30%"align="right" ><?php if(isset($_SESSION['error'])){ echo $_SESSION['error']; unset($_SESSION['error']); }?> </td> <td width="50%"></td> </tr><tr> <td width="26%"align="right" ><p>First name <span class="star">*</span> :</p></td> <td width="50%"><input name="first_name" type="text" autocomplete='off' id="first_name" maxlength="50" style="width:320px;" /></td> </tr><tr> <td width="26%"align="right" ><p>Last name <span class="star">*</span> :</p></td> <td width="50%"><input name="last_name" type="text" autocomplete='off' id="last_name" maxlength="50" style="width:320px;" /></td> </tr><tr> <td align="right" ><p>Job function <span class="star">*</span> :</p></td> <td width="50%"> Thanks,
I never used it yet, but I think: Yes, use it for every formfield which you do not want autocomplete.
Hi I put it in all the form fields and it worked! Thanks, but hope there must be a way to enter only once instead of using in all the form fields.