Using Perl CGI code to set value to Textarea
#!/usr/local/bin/perl
use CGI;
$co = new CGI;
print $co->header,
$co->start_html(-title=>'CGI Example'),
$co->center($co->h1('Welcome to CGI!')),
$co->start_form(),
$co->textarea
(
-name=>'textarea',
-value=>'Hello!',
-rows=>10,
-columns=>60
),
$co->end_form(),
$co->p({-align=>center}, 'Welcome to CGI!'),
$co->end_html;
Related examples in the same category
1. | Pretty print HTML code | | |
2. | Generating HTML Programmatically | | |
3. | Generating HTML | | |
4. | Write CGI scripts with CGI.pm | | |
5. | Producing Human-Readable HTML | | |
6. | A Simple CGI Script | | |
7. | Hello World in Function-Oriented Fashion | | |
8. | Hello World in Object-Oriented Fashion | | |
9. | Generates HTML with the use of CGI.pm | | |
10. | Generates HTML with the use of CGI.pm using the conventional style | | |
11. | Set HTML page title, author name, meta info, background color and link color | | |
12. | Create Image map | | |
13. | Create Frame set | | |
14. | Header, br, ol,li | | |
15. | Defines a title, author, base, and target for a document, plus a few metatags and a stylesheet: | | |
16. | Add the tag to make our lists more compact by pushing onto the @CGI::Pretty::AS_IS array: | | |
17. | Using Perl code align Paragraph tag | | |
18. | Set Textarea row and column size by using Perl CGI code | | |
19. | Create header 1 using Perl code | | |
20. | Authorization-required response | | |