Re: use of CSS in CGI generated docs, Impossible ?
- From: Gunnar Hjalmarsson <noreply@xxxxxxxxx>
- Date: Tue, 15 Nov 2005 11:36:14 +0100
A. Sinan Unur wrote:
navid.boarder@xxxxxxxxx wrote:
use CGI;
If you are going to use the object oriented interface, you should probably write:
use CGI();
so you don't import a whole bunch of names into your script's namespace.
If that had been the case, wouldn't the CGI POD have mentioned it?
use CGI();
BEGIN { $::symbols = keys %CGI:: }use CGI;
print "With parens: $::symbols\n",
'Without parens: ', scalar keys %CGI::, "\n";Outputs: With parens: 86 Without parens: 87
Not much to make a fuss about, is it? ;-)
-- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl .
- Follow-Ups:
- Re: use of CSS in CGI generated docs, Impossible ?
- From: Anno Siegel
- Re: use of CSS in CGI generated docs, Impossible ?
- From: A. Sinan Unur
- Re: use of CSS in CGI generated docs, Impossible ?
- References:
- Re: use of CSS in CGI generated docs, Impossible ?
- From: A. Sinan Unur
- Re: use of CSS in CGI generated docs, Impossible ?
- Prev by Date: Re: reading file and storing information of lines with varying length
- Next by Date: FAQ 4.69 How can I use a reference as a hash key?
- Previous by thread: Re: use of CSS in CGI generated docs, Impossible ?
- Next by thread: Re: use of CSS in CGI generated docs, Impossible ?
- Index(es):
Relevant Pages
|