<?php
/*

This program is a free software; you can redistribute it and/or modify it under 
the terms of the GNU General Public License as published by the Free Software 
Foundation; either version 3.0 of the License, or (at your option) any later 
version.
 
This program is distributed in the hope that it will be useful, but WITHOUT ANY 
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You can receive a copy of GNU General Public License at the World Wide Web 
address <http://www.gnu.org/licenses/gpl.html>.

--------------------------------------------------------
 Product Name        QueryCatcher
 Product URL        http://www.jasonclark.info/files.php
 Product Description    A PHP/MySQL search term recorder module - collect queries logged into system, presents terms as browseable links
 
 Latest Version        1.0
 Release Date         2008/06/16

 Author's Name        Jason Clark 
 Author's Email        jaclark@montana.edu
 Author's URL        http://jasonclark.info
 License            GNU's Public License (GPL)
--------------------------------------------------------

The code from this application is also available in the Code4Lib Journal (http://journal.code4lib.org).
The article that explains the "QueryCatcher" application is titled: "Making Patron Data Work Harder: User Search Terms as Access Points?"
It can be retrieved at http://journal.code4lib.org/articles/78.

*/

//purpose: This form searches the ETD database for the user specified search terms and logs the search terms to a database table. Then the results are displayed in groups of 15 to the user.
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Search Form: QueryCatcher</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen, projection">
<!--
@import url("styles.css");
?>
-->
</style>
</head>
<body>
<p class="toggle"><a class="expand" href="./searches.php" title="View searches arranged in a numbered weighted list">View searches as a list</a> | <a class="expand" href="./searchcloud.php" title="View searches arranged in a weighted cloud list">View searches as a SearchCloud</a></p>
<form class="search" action="results.php" method="post">
    <p>
        <label for="keyword"><strong>Keyword:</strong></label> 
        <input class="text" type="text" id="keyword" name="keyword" maxlength="50" size="50" />
        <input type="submit" id="submit" class="submit" value="Search" />
    </p>
</form>
</body>
</html>