source: branches/1.2/workflow/js/htmlarea/examples/2-areas.cgi @ 1349

Revision 1349, 414 bytes checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
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.