Today i am going to show you the simplest method to add auto-suggest feature in you website using php, jquery and mysql. Here my example is showing auto-suggest for country list. Step-1: Create countries table in your database. countries.sql CREATE TABLE IF NOT EXISTS `countries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sortname` varchar(3) NOT NULL, […]