Browsing index pages (2 articles)
↧
PHP Levenshtein on Query Result
I want to perform a levenshtein on a mysql query result.The query looks like this:$query_GID = "select `ID`,`game` from `gkn_catalog`";$result_GID = $dbc->query($query_GID);$row_GID =...
View ArticleAnswer by JamesHalsall for PHP Levenshtein on Query Result
Your logic for fetching the games (words) from your database is correct, but you need to remove...$words = $row_GID['game'];and pass in the $row_GID variable to your loop.Then in your foreach...
View Article
Browsing index pages (2 articles)