Add htmlarea http://www.htmlarea.com/ tool to appdb
This commit is contained in:
16
htmlarea/examples/2-areas.cgi
Normal file
16
htmlarea/examples/2-areas.cgi
Normal file
@@ -0,0 +1,16 @@
|
||||
#! /usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
use CGI;
|
||||
|
||||
my $cgi = new CGI;
|
||||
my $text1 = $cgi->param('text1');
|
||||
my $text2 = $cgi->param('text2');
|
||||
|
||||
print "Content-type: text/html\n\n";
|
||||
|
||||
print "<p>You submitted:</p>";
|
||||
print "<table border='1'>";
|
||||
print "<thead><tr bgcolor='#cccccc'><td width='50%'>text1</td><td width='50%'>text2</td></tr></thead>";
|
||||
print "<tbody><tr><td>$text1</td><td>$text2</td></tr></tbody>";
|
||||
print "</table>";
|
||||
Reference in New Issue
Block a user