Textbox, please don't help me

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mariolopes
Forum Contributor
Posts: 102
Joined: Sun May 22, 2005 7:08 am

Textbox, please don't help me

Post by mariolopes »

Hi
When i start to write in one textbox usually my textbox try to help me with custom entries. How can i disable this function?
Thank you
User avatar
AbraCadaver
DevNet Master
Posts: 2572
Joined: Mon Feb 24, 2003 10:12 am
Location: The Republic of Texas
Contact:

Re: Textbox, please don't help me

Post by AbraCadaver »

This is a function of the browser. You can't do anything with PHP to stop this. There may be a JavaScript way, but I doubt it.
mysql_function(): WARNING: This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQLextension should be used. See also MySQL: choosing an API guide and related FAQ for more information.
User avatar
social_experiment
DevNet Master
Posts: 2793
Joined: Sun Feb 15, 2009 11:08 am
Location: .za

Re: Textbox, please don't help me

Post by social_experiment »

You should check your browser's options, the settings for enabling and disabling 'auto complete' should be available there.
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
mariolopes
Forum Contributor
Posts: 102
Joined: Sun May 22, 2005 7:08 am

Re: Textbox, please don't help me

Post by mariolopes »

The solution :
in the form write

Code: Select all

 
autocomplete="off"
 
Post Reply