การทำ search suggest เหมือน google
หน้าแรก AJAX การทำ search suggest เหมือน google
AutoCompleter Tutorial
As always, links to a demo and ZIP at the bottom, Enjoy!
I thought i would write this tutorial because most of the auto completer applications i have seen just dump the code into a zip and tell you how to use it rather than how and why it works, knowing about this enables you to customise it a lot more (this has been demonstrated with the other apps i have written here)!

And so we begin:
JavaScript
JS Explaniation
Ok, the above code it the guts to the script, this allows us to hook into the rpc.php file which carries out all the processing.
The Lookup function takes the word from the input box and POSTS it to the rpc.php page using the jQuery Ajax POST call.
IF the inputString is 0′ (Zero), it hides the suggestion box, naturally you would not want this showing if there is nothing in the text box. to search for.
ELSE we take the inputString and post it to the rpc.php page, the jQuery $.post() function is used as follows
The callback part allows to hook in a function, this is where the real magic if thats what you can call it happens.
IF the data returned length is more than zero (ie: there is actually something to show), show the suggestionBox and replace the HTML inside with the returned data.
SIMPLE!
Now for the PHP Backend (RPC.php)
As always my PHP Backend page is called rpc.php (Remote Procedure Call) not that it actually does that, but hey-ho.
PHP Explaination
Im not going to go into much detail here because there are loads of comments in the code above.
Basically, it takes the QueryString and does a query with a wildcard at the en.
This means that in this case of the code each key-press generates a new query, this is MySQL intensive if its always being done, but short of making it exceedingly complex it is fine for small scale applications.
The PHP code is the part you have to change to work in your system, and all the it is updating the $query to your database, you should be able to see where you put the table column name in etc
CSS Styling im using CSS3, YEA BABY! much easier although limits the functionality to Firefox and Safari.
The CSS is pretty standard, nothing out of the ordinary.
Main HTML
That is the main bit of HTML, really all you need to run this is an input text box with the onkeyup function set to lookup(this.value); Also, i recommend NOT changing the ID of the input box, unless you change it in the Javascript section ![]()
Screenshots ![]()
I suppose you want to see some more screen shots . OK.

And another one!

And now for the links this is probably what you are all looking for!
Demo: Auto Complete Demo
Source ZIP: AutoComplete Source ZIP
If you have any problems, just post them up here (as comments) and i am sure i can help you fix it ![]()
Thanks for the continued support,
Jamie.
refer: http://www.nodstrum.com/2007/09/19/autocompleter/
ขึ้นไปด้านบน
