This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/search.php
Chris Morgan 854df987c6 Clean up includes. Make 'path.php' and 'incl.php' required includes. Switch to using
require_once() for including files in /include so we can have include/*.php files include
their own dependencies rather than figuring out that to include A.php we need to include B.php
2006-07-07 18:14:53 +00:00

21 lines
410 B
PHP

<?php
/**
* Search engine.
*
* Mandatory parameters:
* - sSearchQuery, user search query
*
* TODO:
* - prefix perform_search_and_output_results with a module prefix
*/
// application environment
require("path.php");
require(BASE."include/incl.php");
require(BASE."include/filter.php");
apidb_header("Search Results");
perform_search_and_output_results($aClean['sSearchQuery']);
apidb_footer();
?>