21 lines
392 B
PHP
21 lines
392 B
PHP
<?php
|
|
/*****************/
|
|
/* search engine */
|
|
/*****************/
|
|
|
|
/*
|
|
* application environment
|
|
*/
|
|
include("path.php");
|
|
require(BASE."include/incl.php");
|
|
require(BASE."include/application.php");
|
|
|
|
$aClean = array(); //array of filtered user input
|
|
|
|
$aClean['q'] = makeSafe($_REQUEST['q']);
|
|
|
|
apidb_header("Search Results");
|
|
perform_search_and_output_results($aClean['q']);
|
|
apidb_footer();
|
|
?>
|