On my site I have many forms, some of which I do not want browsers to autocomplete/fill.
I have tried adding autocomplete="off"
on all imputs which I don't want to be completed/filled.
This appears to be the standard method but I cannot seem to find any others, is there another way to do this?
Thanks
<label>First Name:</label><input type="text" id="fname" name="fname" autocomplete="off" placeholder="<?php echo ($userRow['fname']); ?>" /><br />
<label>Last Name:</label><input type="text" id="lname" name="lname" autocomplete="off" placeholder="<?php echo ($userRow['lname']); ?>" /><br />
<label>Email:</label><input type="text" id="email" name="email" autocomplete="off" placeholder="<?php echo ($userRow['email']); ?>" /><br />