in reply to Re: Re: Re: HTML and CGI coding
in thread HTML and CGI coding
Givesperl -MCGI -e "$q = new CGI ; print $q->Tr({-font_family => 'not-valid +'})"
and to fix up the inital params:<tr font-family="not-valid" />
givesuse CGI; $q = new CGI; print $q->Tr({ -align => "CENTER", -valign => "TOP", -bgcolor => "blue", -font_color => "yellow", -font_family => "verdana, arial, helvetica", -font_size => "12" });
<tr valign="TOP" font-family="verdana, arial, helvetica" font-color="y +ellow" align="CENTER" font-size="12" bgcolor="blue" />
|
|---|