source: trunk/qsearch.php @ 5742

Last change on this file since 5742 was 5196, checked in by plg, 14 years ago

increase copyright year to 2010

File size: 2.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24define('PHPWG_ROOT_PATH','./');
25include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
26
27// +-----------------------------------------------------------------------+
28// | Check Access and exit when user status is not ok                      |
29// +-----------------------------------------------------------------------+
30check_status(ACCESS_GUEST);
31
32if (empty($_GET['q']))
33{
34  redirect( make_index_url() );
35}
36
37$search = array();
38$search['q']=$_GET['q'];
39
40$query = '
41SElECT id FROM '.SEARCH_TABLE.'
42  WHERE rules = \''.addslashes(serialize($search)).'\'
43;';
44$search_id = array_from_query( $query, 'id');
45if ( !empty($search_id) )
46{
47  $search_id = $search_id[0];
48  $query = '
49UPDATE '.SEARCH_TABLE.'
50  SET last_seen=NOW()
51  WHERE id='.$search_id;
52  pwg_query($query);
53}
54else
55{
56  $query ='
57INSERT INTO '.SEARCH_TABLE.'
58  (rules, last_seen)
59  VALUES
60  (\''.addslashes(serialize($search)).'\', NOW() )
61;';
62  pwg_query($query);
63  $search_id = pwg_db_insert_id(SEARCH_TABLE);
64}
65
66redirect(
67  make_index_url(
68    array(
69      'section' => 'search',
70      'search'  => $search_id,
71      )
72    )
73  );
74?>
Note: See TracBrowser for help on using the repository browser.