code examples
Here is a code example :
Using SOAP, a web service protocol, I wrote a client to pick up a database at cornucopia. Try it here, keyword is museum.-
Sorry this one is now out of date – but if you have a special request for it, I can send you the code but check it out on php.net.
Search suggester using Levenshtein distances
source code for search suggester
(the numbers L / S are string distances between whats in the dictionary and the given word from the text box)
This is useful for search when someone misspells a word or isnt quite sure how to spell the word.
The code makes use of two in-built php library functions,
$similiar = similar_text($keyword, $word);$lev = levenshtein($keyword, $word);
See how well it copes when you try your own or see what it will do for common misspellings:
and
recieve,
boyancy
commitee



