Skip to main content

How to create a search engine

How to create a search engine

I am going to teach you how we can create a search engine using Google API.
You can add more styles to it ,because I'd be creating a simple looking search engine.
Google Custom Search API are wonderful tools to create some awesome search engine like tools. Also if you want to add a search option to your website and customize the look and feel of your search results, Google Custom Search API serve best to you. I have created a Real Time Search engine (I call it real time as it search as you type). I am really impressed by the speed/response of Google Search API.
In order to use Google Search API, you have to first generate a Key for you. Go to following page and signup your self for the Key. Sign up for Google API Key
https://code.google.com/apis/ajaxsearch/signup.html
Next step is to include the Google Search API javascript. Don’t forget to mention your key in the below code.
<script src="http://www.google.com/jsapi?key=YOURKEY" type="text/javascript"></script> <script type="text/javascript"> 

google.load('search', '1'); </script>
Now We will create a textbox and a button that will take input for search. And a DIV that will be populated by results
<input type="text" title="Real Time Search" name="searchbox"/>

<input type="button" id="searchbtn" value="Search" onclick="search(searchbox.value)"/> 
<div class="data" id="web-content">
</div> 

When user will write a query and push Search button, a request will be made to Google Search using Custom Search API and the results are fetched. These results are then copied into the DIV.
We will use following JavaScript to call the Google Search API and copy the results in our container DIV. The code in plain english is:
1. Create an object to connect Google Web search using class google.search.WebSearch.
2. Set a callback function that will get call once the results for the search are fetched.
3. Call the execute() method with search query as argument.
4. In callback function, iterate through the results and copy it to container DIV.
var webSearch;
webSearch = new 
google.search.WebSearch(); 
webSearch.setSearchCompleteCallback(this, webSearchComplete, [webSearch]); 
function webSearchComplete (searcher, searchNum)
{ 	
 var contentDiv = document.getElementById('web-content'); 
 contentDiv.innerHTML = ''; 
 var results = searcher.results;
 var newResultsDiv = document.createElement('div'); 
 newResultsDiv.id = 'web-content'; 
 for (var i = 0; i < results.length;
 i++)
 {
 var result = results[i]; 
 var resultHTML = '<div>';
 resultHTML += '<a href="' + result.unescapedUrl + '" target="_blank"><b>' + 
 result.titleNoFormatting + '</b></a>br<br/>' + 
 result.content + '<div/>'; 
 newResultsDiv.innerHTML += resultHTML; 
 } 
 
 contentDiv.appendChild(newResultsDiv); } 
 function search(query)
 { 
 
 webSearch.execute(query);
 }
You could see it was really simple,easy and short,however it works perfectly but you notice it has poor styling.You can add it up ,or download the sass styles. created from
Trednix.com/drexisrael

You can even collect cookies from the people using your search engine ,learn How to create session cookies and All you need to know about cookies.How about adding a cool ,nice and dynamic dark mode to it , see it here How to create the best dark mode that works for all the pages in your site and does not turn off when page reloaded

Comments

Popular posts from this blog

Ecommerce single item cart with php checkoit

email otp sms How to create an ecommerce single item cart with checkout integrations Guys today i am going to teach you guys how to build an ecommerce site with checkout integration but only with a single product, you can add more to it So we are building it using my favorite PHP ,Ajax and JQuery. I have already created a simple shopping cart code in PHP with the product gallery.let's get this over with What are we building? I am not meant to show you this but i would to make you exited about it.And look at the cool checkout page and it really works!!. Single product UI with buy now and Checkout controls This is the code of the landing page created for this example. It includes PHP snippets at the beginning. After that, it has the HTML for displaying only one product tile to users. This tile has the “ Buy now ” button. On clicking it will show an HTML form to collect the customer details, name and email address. By submitting the customer details, it calls the ...

Email OTP

email otp sms Email OTP Login with an OTP code is a secure method for the user authentication process. In this method, a one-time password is generated dynamically and sent to the user who attempts login. OTP can be sent to the user’s email or his mobile phone. When the user enters the OTP code then the application will authenticate the user via this code. In this tutorial, we are going to see an example to authenticate user login via an OTP code using email. You can check our mobile sms otp too!  In this example, when the registered user enters email to login, an OTP code is sent to the email address. Using this OTP code the user will be validated. Once the user uses this code then it will be invalid, meaning it cannot be used again. Also, this token will be valid for a day, then it will be expired. Login form with OTP The following code shows login form to the user to enter his email address. On entering email, it shows an input to enter the OTP code sent to his email addres...

How to block user IP address from your website in PHP

how to block your website user using their ip address blocking users from your site There are many reasons you may need to block an IP address from visiting your website. For example, to prevent particular users doing malicious things with your website - trying to spam your web forms, or hack your shopping cart, etc. Using PHP, you can easily find your site visitors' website addresses and based on these addresses to redirect them to specific places on your site. If you use such IP ban protection on your website, you will also need to not only list individual addresses to be blocked but also IP masks and IP ranges. In this tutorial I would show you how you can do that.But,it would be manual .i'd talk about manual and automatic way to do it. Let's start! First, we will create an array to list all the IP addresses that we want to block. Besides single IP addresses, we will also use IP ranges such as 216.58.197.101-216.58.197.200 and IP masks 100.88.*.*. Here is the arr...