use CGI qw/:standard :html3 *table *div *form -no_xhtml escapeHTML
unescapeHTML/;
# should I leave ^ these in if I do this:
CGI->compile(':standard :html3 *table *div *form -no_xhtml escapeHTML
unescapeHTML');
vs
use CGI ();
CGI->compile(':all');
vs
use CGI ();
CGI->compile(':standard :html3 *table *div *form -no_xhtml escapeHTML
unescapeHTML');
if the first example is what I normally do, is it better to do this?
Does this help in any way for situations where mod_perl is NOT
installed?
vs
# do I need to pull in the specials like *table if httpd.conf has a
pointer to a perl script with CGI->compile(':all'); in it?
just curious.. the docs are a little vague on this point.
--
Scott R. Godin | e-mail : [EMAIL PROTECTED]
Laughing Dragon Services | web : http://www.webdragon.net/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]