source: sandbox/2.3-MailArchiver/workflow/js/htmlarea/examples/2-areas.cgi @ 6779

Revision 6779, 414 bytes checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1#! /usr/bin/perl -w
2
3use strict;
4use CGI;
5
6my $cgi = new CGI;
7my $text1 = $cgi->param('text1');
8my $text2 = $cgi->param('text2');
9
10print "Content-type: text/html\n\n";
11
12print "<p>You submitted:</p>";
13print "<table border='1'>";
14print "<thead><tr bgcolor='#cccccc'><td width='50%'>text1</td><td width='50%'>text2</td></tr></thead>";
15print "<tbody><tr><td>$text1</td><td>$text2</td></tr></tbody>";
16print "</table>";
Note: See TracBrowser for help on using the repository browser.