h*****l 发帖数: 184 | 1 【 以下文字转载自 Software 讨论区,原文如下 】
发信人: hanibal (汉尼拔), 信区: Software
标 题: How many version of Perl/CGI are there?
发信站: The unknown SPACE (Thu Jun 12 12:04:34 2003) WWW-POST
I used ASP a lot, this summer starts to use CGI/PERL on Apache server.
I learn quickly as those technologies are very similar.
But then I met some problem, for example, following code works on my school
server.
#!/usr/local/bin/perl
print "hello world";
But on another server, it has to be:
#!/usr/local/bin/perl
use CGI;
$q=new CGI |
|