in reply to Re: Re: Printing quotes out to an html form?
in thread Printing quotes out to an html form?
it works great!use CGI; my $q = new CGI; my $value = '<img src="/someimg.gif">'; print $q->start_html(), $q->start_form(), $q->textfield( -name=>'test', -value=>$value), $q->end_form, $q->end_html;
|
|---|