On Nov 8, 12:35 pm, [EMAIL PROTECTED] (Bill Stephenson) wrote:
> On Nov 8, 2008, at 10:39 AM, Adam Jimerson wrote:
>
> > start_html
>
> This is from the CGI docs:
>
> print start_html(-title=>'Secrets of the Pyramids',
> -author=>'[EMAIL PROTECTED]',
>
On Nov 8, 2008, at 10:39 AM, Adam Jimerson wrote:
start_html
This is from the CGI docs:
print start_html(-title=>'Secrets of the Pyramids',
-author=>'[EMAIL PROTECTED]',
-base=>'true',
-target=>'_blank',
I am curious about adding CSS to a CGI script, lets say that this is my script
~~~
#!/usr/bin/perl
use warnings;
use strict;
use CGI qw(:standard);
print header(), start_html("Add Me");
print h1("Add Me");
if(param()) {
my $n1 = param('field1');
my $n2 = p