At 2002-12-14T11:02:49Z, eric lin <[EMAIL PROTECTED]> writes:
> any opinion?
Eric,
With all due respect, you're asking for a lot of specific help from a
general forum. I believe that your (and our) time would be better spent
asking in the appropriate newsgroups or mailing lists, such as
comp.l
eric lin <[EMAIL PROTECTED]> writes:
> > foreach (param()) {
> > print "\n";
> > print "$_ has value(s) => ";
> > print param($_);
> > print "\n";
> > }
> >
> > print end_html();
> >
> >
> Same thing, only show "This is an example CGI script."
>
> I keep doubt it is my httpd and perl m
Philip M. Gollucci wrote:
see
perldoc -f print
for why
also see perldoc CGI
#!/usr/bin/perl -wT
use strict;
use CGI qw (:standard);
print header();
print start_html();
print "This is an exmaple CGI script.\n";
foreach (param()) {
print "\n";
print "$_ has value(s) => ";
print param(
3 matches
Mail list logo