<?php
//Search word from another page.
$wordToSearch = $_GET['search'];
?>
<!-- Default Codes Given By Google -->
<div id="cse" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl(
'008589345518634109499:d1tnvxufspo');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
}, true);
</script>
<link rel="stylesheet" href="http://www.google.com/cse/style/look/default.css" type="text/css" />
Here I'm trying to pass Google Custom Api a word to automatically search... as soon as this php page is loaded. However, I'm really not sure how & what to modify the code. I'm looking into API documents but no luck still so far... Can anyone enlighten me please? Thank you.