Add htmlarea http://www.htmlarea.com/ tool to appdb
This commit is contained in:
21
htmlarea/examples/test.cgi
Normal file
21
htmlarea/examples/test.cgi
Normal file
@@ -0,0 +1,21 @@
|
||||
#! /usr/bin/perl -w
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
|
||||
use CGI;
|
||||
|
||||
print "Content-type: text/html\n\n";
|
||||
$c = new CGI;
|
||||
$ta = $c->param('ta');
|
||||
|
||||
print <<EOF;
|
||||
<html>
|
||||
<body>
|
||||
<textarea style="width: 100%; height: 200px">$ta</textarea>
|
||||
$ta
|
||||
</body>
|
||||
</html>
|
||||
EOF
|
||||
Reference in New Issue
Block a user