views:

130

answers:

4

Hi

I need a text input field which does not use the autocomplete function - If a user has submitted the form before, his previous submissions should -not- appear as he types into the form again, even if he is typing the same thing again. As far as I can tell, there are a few ways to do this:

1. <form autocomplete="off">
However, I believe this is a proprietary tag, and I am not sure how compatible it is across browsers

2. Give the input field a random 'name'
One could even use JS to set the name back to an expected value before submission. However, if the user does not have JS installed, you'd need another hidden input with the name - and the php code on the other side gets messy fast.

Do you know of any other ways? Is one of these ways the "accepted" way? Comments?

Thanks,
Mala

+1  A: 

Stick with the random name. You can do it simply enough server and client and you meet your no-js requirement.

cottsak
A: 

You can store the original and changed name in a $_SESSION variable before outputting the form, and after the user submits, just get the name from there:

$random_name = md5('original_name' . time());
$_SESSION['original_name'] = $random_name;

...output form...

And after submitting you can easily get the value from $_POST using the $_SESSION variable:

$field_value = $_POST[$_SESSION['original_name']];

Just be sure that you have sessions available by calling session_start() before any processing.

Tatu Ulmanen
A: 

Autocomplete is something that browsers decided to do on their own, so there’s certainly no spec document to look at.

Paul D. Waite