I want to create Combo Box like in Google for my project using PHP and MySQL.
The term "combo box" is sometimes, incorrectly, used to mean "drop-down list". It is a combination of a drop-down list or list box and a single-line text box, allowing the user to either type a value directly into the control or choose from the list of existing options.
If I have table as follows,in the web page that I am going to create if I type 'au' in the combo box Australia should appear.I may or may not select it. For example,there I can type Austria without selecting Australia.
Id place
1 America
2 Australia
The term "combo box" is sometimes, incorrectly, used to mean "drop-down list". It is a combination of a drop-down list or list box and a single-line text box, allowing the user to either type a value directly into the control or choose from the list of existing options.
If I have table as follows,in the web page that I am going to create if I type 'au' in the combo box Australia should appear.I may or may not select it. For example,there I can type Austria without selecting Australia.
Id place
1 America
2 Australia
Comment