chanchelkumar Posted April 2, 2007 Share Posted April 2, 2007 Hi I want an Auto-complete text box Where the values are coming from the database!!!!! Just as like G-mail's "Mail to" text box!!! Please any one help!!!! Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/ Share on other sites More sharing options...
MadTechie Posted April 2, 2007 Share Posted April 2, 2007 Look in the ajax section Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/#findComment-219633 Share on other sites More sharing options...
DeathStar Posted April 2, 2007 Share Posted April 2, 2007 umm.. like this: $query="SELECT `value` FROM `table`"; $value=mysql_query($query); echo "<input type='text' name='txt1' value='$value'>"; that wil output: ________________ |____The value____| Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/#findComment-219738 Share on other sites More sharing options...
obsidian Posted April 2, 2007 Share Posted April 2, 2007 umm.. like this: Read the first post again... The OP is looking for something like Google Suggest: that's a live auto-complete, not simply a query action. In answer to the OP, this tutorial on AJAXFreaks should be what you're after. Good luck! Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/#findComment-219750 Share on other sites More sharing options...
DeathStar Posted April 2, 2007 Share Posted April 2, 2007 ok.. but dropdowns can be used to XD Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/#findComment-219886 Share on other sites More sharing options...
obsidian Posted April 2, 2007 Share Posted April 2, 2007 ok.. but dropdowns can be used to XD True, but that still won't give you an auto-complete, it will let you enter the first letter and get you in the ballpark, but that's about it Link to comment https://forums.phpfreaks.com/topic/45235-i-want-an-auto-complete-textbox/#findComment-219895 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.