Kumara - predecessor to Koha
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/perl
-
- #simple script to provide basic redirection
- #used by members section
-
- use CGI;
- use strict;
-
- my $input=new CGI;
-
- my $choice=$input->param('chooseform');
-
- if ($choice eq 'adult'){
- print $input->redirect("/cgi-bin/koha/memberentry.pl?type=Add");
- }
-
- if ($choice eq 'organisation'){
- print $input->redirect("/cgi-bin/koha/imemberentry.pl?type=Add");
- }
|