> Yes... CGI.pm would be a good place to start:
> http://search.cpan.org/~lds/CGI.pm-3.05/CGI.pm
I disagree. IMHO If you have C++ skills, you should
bypass CGI and head straight on to mod_perl using
"method handlers". These are Object oriented classes
that handle web requests.
Marty
Hello,
is it possible to tell PERL to avoid interpreting method names as a key
word?
Example:
$ref->scalar()
PERL will see scalar as a key word and is thus not able to compile.
Antoine
___
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: h
Antoine HUE wrote:
> Hello,
> is it possible to tell PERL to avoid interpreting method names as a key
> word?
> Example:
> $ref->scalar()
> PERL will see scalar as a key word and is thus not able to compile.
Don't follow - can you put that in context with a small complete test case
and indicate
$Bill Luebkert wrote:
Antoine HUE wrote:
Hello,
is it possible to tell PERL to avoid interpreting method names as a key
word?
Example:
$ref->scalar()
PERL will see scalar as a key word and is thus not able to compile.
Don't follow - can you put that in context with a small complete test ca
Antoine HUE <[EMAIL PROTECTED]> writes:
> >Don't follow - can you put that in context with a small complete test case
> >and indicate what error you are getting.
> >
> >
> Actually, I am using XML::Generator to produce some XML. This module
> is using the AUTOLOAD to create any kind of XML element
Martin Moss wrote:
Yes... CGI.pm would be a good place to start:
http://search.cpan.org/~lds/CGI.pm-3.05/CGI.pm
I disagree. IMHO If you have C++ skills, you should
bypass CGI and head straight on to mod_perl using
"method handlers". These are Object oriented classes
that handle web requests.
I