How can I search within a specific website with PHP and the Google API? When I search for a keyword, I want the result from website1.com AND website2.com AND website3.com. For example:
<input name="search" value="keyword">
<input name="as_site" value="site1.com">
<input name="as_site" value="site2.com">
<input name="as_site" value="site3.com">
The result should be returned from these three websites only.
According to your form and assuming that the keyword field is named
keywordthis sample code is assuming you have only one site to search you can customize it to include many.Assuming that the site input is named
site