Kumara - predecessor to Koha
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

19 行
367 B

#!/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");
}