6 |
kaklik |
1 |
<?php
|
|
|
2 |
/*************************
|
|
|
3 |
Coppermine Photo Gallery
|
|
|
4 |
************************
|
|
|
5 |
Copyright (c) 2003-2005 Coppermine Dev Team
|
|
|
6 |
v1.1 originaly written by Gregory DEMAR
|
|
|
7 |
|
|
|
8 |
This program is free software; you can redistribute it and/or modify
|
|
|
9 |
it under the terms of the GNU General Public License as published by
|
|
|
10 |
the Free Software Foundation; either version 2 of the License, or
|
|
|
11 |
(at your option) any later version.
|
|
|
12 |
********************************************
|
|
|
13 |
Coppermine version: 1.3.3
|
|
|
14 |
$Source: /cvsroot/coppermine/stable/search.php,v $
|
|
|
15 |
$Revision: 1.6 $
|
|
|
16 |
$Author: gaugau $
|
|
|
17 |
$Date: 2005/04/19 03:17:11 $
|
|
|
18 |
**********************************************/
|
|
|
19 |
|
|
|
20 |
define('IN_COPPERMINE', true);
|
|
|
21 |
define('SEARCH_PHP', true);
|
|
|
22 |
|
|
|
23 |
require('include/init.inc.php');
|
|
|
24 |
|
|
|
25 |
pageheader($lang_search_php[0]);
|
|
|
26 |
|
|
|
27 |
starttable(500, $lang_search_php[0]);
|
|
|
28 |
echo <<< EOT
|
|
|
29 |
<tr>
|
|
|
30 |
<form method="get" action="thumbnails.php" name="searchcpg">
|
|
|
31 |
<input type="hidden" name="album" value="search">
|
|
|
32 |
<input type="hidden" name="type" value="full">
|
|
|
33 |
<td class="tableb" align="center" height="60">
|
|
|
34 |
<input type="input" style="width: 90%" name="search" maxlength="255" value="" class="textinput">
|
|
|
35 |
</td>
|
|
|
36 |
<script language="javascript" type="text/javascript">
|
|
|
37 |
<!--
|
|
|
38 |
document.searchcpg.search.focus();
|
|
|
39 |
-->
|
|
|
40 |
</script>
|
|
|
41 |
</tr>
|
|
|
42 |
<tr>
|
|
|
43 |
<td colspan="8" align="center" class="tablef">
|
|
|
44 |
<input type="submit" value="{$lang_search_php[0]}" class="button">
|
|
|
45 |
</td>
|
|
|
46 |
</form>
|
|
|
47 |
</tr>
|
|
|
48 |
|
|
|
49 |
EOT;
|
|
|
50 |
endtable();
|
|
|
51 |
pagefooter();
|
|
|
52 |
ob_end_flush();
|
|
|
53 |
|
|
|
54 |
?>
|