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

20 lines
374 B
PHP
Raw Permalink Normal View History

<?php
2006-07-06 18:37:34 +00:00
/**
* Search engine.
*
* Mandatory parameters:
* - sSearchQuery, user search query
*
* TODO:
* - prefix perform_search_and_output_results with a module prefix
*/
2004-03-15 16:22:00 +00:00
2006-07-06 18:37:34 +00:00
// application environment
require("path.php");
require(BASE."include/incl.php");
2004-03-15 16:22:00 +00:00
apidb_header("Search Results");
perform_search_and_output_results($aClean['sSearchQuery']);
2004-03-15 16:22:00 +00:00
apidb_footer();
?>