views:

9

answers:

1

Hello,

I have using auto-complete functionality in PHP for the text box of first name.

While I get auto-complete result of first name, at that time I have received drop down list (which displays some records in cache).

How can I hide the records displayed from Cache?

+1  A: 

That's actually down to HTML, you can turn it off on the control:

<INPUT NAME="name" SIZE="40" AUTOCOMPLETE="OFF">
Lloyd