Reintroducing history dates for serial-issue (see previous commit for staff // feature)
[koha.git] / circ / ysearch.pl
blob2c609807c1cd96b25b240048365f9377409bc69d
1 #!/usr/bin/perl
3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
5 # Copyright 2007 Tamil s.a.r.l.
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA 02111-1307 USA
22 =head1 ysearch.pl
25 =cut
27 use strict;
28 use CGI;
29 use C4::Context;
31 my $input = new CGI;
32 my $query = $input->param('query');
34 print $input->header(-type => 'text/plain', -charset => 'UTF-8');
36 my $dbh = C4::Context->dbh;
37 $query = "SELECT surname, firstname, cardnumber, address, city, zipcode ".
38 "FROM borrowers " .
39 "WHERE surname LIKE '". $query . "%' " .
40 "OR firstname LIKE '" . $query . "%' " .
41 #"OR cardnumber LIKE '" . $query . "%' " .
42 "ORDER BY surname, firstname ";
43 my $sth = $dbh->prepare( $query );
44 $sth->execute();
45 while ( my $rec = $sth->fetchrow_hashref ) {
46 print $rec->{surname} . ", " . $rec->{firstname} . "\t" .
47 $rec->{cardnumber} . "\t" .
48 $rec->{address} . "\t" .
49 $rec->{city} . "\t" .
50 $rec->{zip} .
51 "\n";