how to put background in header in CGI?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • poolboi
    New Member
    • Jan 2008
    • 170

    how to put background in header in CGI?

    hey guys

    how do i put my background into the CGI code within the header

    i got his code so far
    [CODE=CGI]
    my $cgi = new CGI;

    print
    $cgi->header,
    $cgi->start_html('St arHub Login'),
    print $cgi->end_html();
    [/CODE]
  • KevinADC
    Recognized Expert Specialist
    • Jan 2007
    • 4092

    #2
    not in the header but in the start_html tag:

    Code:
    $cgi->start_html(-title=>'StarHub Login',-bgcolor=>'blue')
    read the CGI module documentation

    Comment

    Working...