How to create your own search engine with PHP and MySQL
How to create your own search engine with PHP and MySQL Search engine has become a useful tool in today’s internet world. In this article we will evaluate its different…
creating a database in phpmyadmin things to note
CREATE TABLE SEARCH_ENGINE ( `id` INT(11) NOT NULL AUTO_INCREMENT, `pageurl` VARCHAR(255) NOT NULL, `pagecontent` TEXT NOT NULL, PRIMARY KEY (`id`)) Read more: http://mrbool.com/how-to-create-your-own-search-engine-with-php-and-mysql/32733#ixzz62hXEdWVj Changing the Database Collation in PhpMyAdmin Changing…