David Gilden wrote:
> Good afternoon,
> a few quick questions pertaining to CGI.pm:
> 
> How can I get CGI.pm to return lower case <html> tags.
> 
> print end_html; # prints Upper Case </BODY></HTML>

probably need to upgrade CGI.pm. I get lower case:

$ perl -MCGI=:standard -le 'print $CGI::VERSION; print end_html'
2.752
</body></html>

> 
> is there something I can add locally to my script or do I have to
>  send a request to my ISP? How would tell what version I have running
> at my account?

output $CGI::VERSION in one of your scripts. 

> 
> This is what I am using at top of my scripts:
> #!/usr/bin/perl -w
> use CGI qw/:standard/;
> 
> ----
> 
> Can the param() method take strings with spaces in them like:
> param('my name')   # is this bad practice or inefficient?

This is legal. Don't know if it's considered bad practice.

> 
> and is calling:
> param('my name')
> param('My Name')
> 
> going to look for different form fields-- i.e. is param() case
> sensitive? 

Yes, parameter names are case-sensitive.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to