Answers to: How do a make a custom Google search?http://linuxexchange.org/questions/653/how-do-a-make-a-custom-google-search<p>I would like to make a (html) form which enables me to do a custom Google search query. If I enter for example 10 keywords in a text area (every line contains a word), I should see how much "Estimated results" there are for every keyword. </p>enWed, 19 May 2010 11:00:40 -0400Answer by maszynistahttp://linuxexchange.org/questions/653/how-do-a-make-a-custom-google-search/656<p>use <a href="http://code.google.com/apis/ajaxsearch/web.html" rel="nofollow">Google AJAX search API</a></p>maszynistaWed, 19 May 2010 11:00:40 -0400http://linuxexchange.org/questions/653/how-do-a-make-a-custom-google-search/656Answer by Garethhttp://linuxexchange.org/questions/653/how-do-a-make-a-custom-google-search/654<p>I am afraid that just using plain old HTML would not allow you to perform the functionality you want. You would have to use some kind of server-side scripting language such as PHP, for example, or AJAX through using JavaScript. </p> <p>Going into the specifics of using these languages are way outside the scope of this answer so I'd recommend you spend some time learning from the vast amount of resources on the web available for that. Try using Google ;) for searching for some tutorials to get this done. Also, take a look at the JQuery javascript framework as they make implementing AJAX style functionality a lot easier.</p>GarethWed, 19 May 2010 10:47:46 -0400http://linuxexchange.org/questions/653/how-do-a-make-a-custom-google-search/654