database for the application name and display a table at the top of the page. This makes it easier to determine if the submission is a duplicate. Remove obsolete comments for admins. Add a 'back' link to the top of the page to make it easier to go back without scrolling to the bottom of the page.
20 lines
356 B
PHP
20 lines
356 B
PHP
<?php
|
|
/*****************/
|
|
/* search engine */
|
|
/*****************/
|
|
|
|
/*
|
|
* application environment
|
|
*/
|
|
include("path.php");
|
|
require(BASE."include/incl.php");
|
|
require(BASE."include/application.php");
|
|
|
|
|
|
apidb_header("Search Results");
|
|
|
|
$hResult = searchForApplication($_REQUEST['q']);
|
|
outputSearchTableForhResult($_REQUEST['q'], $hResult);
|
|
apidb_footer();
|
|
?>
|