top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create your own search engine with PHP and MySQL

+3 votes
452 views
How to create your own search engine with PHP and MySQL
posted Jul 10, 2015 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

A search engine is a web-based tool which allows the internet users to find information on the internet. Most commonly used search engines are Google, Yahoo!, MSN, Bing, Ask etc. Search engines are special types of programs used to search documents having specified keywords and returns a list of documents where the keywords are located. Asearch engine is usually a general collection of programs. However, the term ‘search engine’ is often used to generally describe the common systems like Google, Bing and Yahoo! Search engines generally use automated software applications e.g robots or spiders which moves across the Web and follows the links from page to page, site to site. The information collected by these crawlers is used to create a searchable index of the Web.
For more information :http://mrbool.com/how-to-create-your-own-search-engine-with-php-and-mysql/32733

answer Feb 23, 2016 by Rahul Singh
Similar Questions
+2 votes

I know how to use classes and objects in PHP, but it has always been difficult for me to figure out how should I use php Objects with database like mysql.

Specially loading and saving data when there are one-one or one-many relationship.

Can someone guide me with books/blogs where I can get the better idea in this regard?

+2 votes

I have moderate level PHP programming skills. I am also interested in merging those skills inside of the WordPress app. With their advanced responsive design themes and many other functions it seems like a good idea. I have tried loading some PHP plug-ins in WP – but I don't seem to get them to do more than basics.

Can anybody help me on how I can get started working with PHP/MySQL inside of the WordPress app?

+1 vote

I have a column called name in a table info
So I want to update that with it's current value, like this name + user_input. I tried with this code but not working

mysql_query("UPDATE info SET name = name + '$user_input' WHERE id='$user_id'");

But It returns 0 and update column to 0....

Any idea how to accomplish this task?

...