-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_results.php
39 lines (31 loc) · 1.04 KB
/
search_results.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* Application browser.
*
* Optional parameters:
* - iCatId, shows applications that belong to the category identified by iCatId
*/
// application environment
require("path.php");
require(BASE."include/"."incl.php");
require_once(BASE."include/"."appdb.php");
require_once(BASE."include/"."category.php");
//output header
apidb_header("Search results");
echo "<div class='default_container'>\n";
echo '
<!-- Google Search Result Snippet Begins -->
<div id="results_013271970634691685804:bc-56dvxydi"></div>
<script type="text/javascript">
var googleSearchIframeName = "results_013271970634691685804:bc-56dvxydi";
var googleSearchFormName = "searchbox_013271970634691685804:bc-56dvxydi";
var googleSearchFrameWidth = 600;
var googleSearchFrameborder = 0;
var googleSearchDomain = "www.google.com";
var googleSearchPath = "/cse";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>
<!-- Google Search Result Snippet Ends -->
';
echo "</div>\n";
apidb_footer();