|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/mandarintools/cgi-bin/ |
Upload File : |
#!/usr/bin/perl -- -*- coding:cn-gb -*-
use CGI;
require "./neelib.pl";
$query = new CGI;
$tagset = $query->param('tagset');
$filetxt = $query->param('text');
$neetxt = &addNEE($filetxt);
#$neetxt = $filetxt;
if ($tagset eq "HTML") {
print "Content-type: text/html;charset=gb2312\n\n";
print "<TABLE>
<TR>
<TD><FONT COLOR=RED>PERSON</FONT></TD>
<TD><FONT COLOR=GREEN>LOCATION</FONT></TD>
<TD><FONT COLOR=BLUE>ORGANIZATION</FONT></TD>
<TD><FONT COLOR=PURPLE>DATE</FONT></TD>
<TD><FONT COLOR=GRAY>TIME</FONT></TD>
<TD><FONT COLOR=ORANGE>PERCENT</FONT></TD>
<TD><FONT COLOR=GOLD>MONEY</FONT></TD>
</TR>
</TABLE><P>";
} else {
print "Content-type: text/plain;charset=gb2312\n\n";
}
print $neetxt;