mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
a3a85a862d
eGW code to use it, is in phpgwapi/inc/class.html.inc.php the translations (via eGW standard translation system) are in phpgwapi/inc/htmlarea-lang.php
22 lines
225 B
Perl
Executable File
22 lines
225 B
Perl
Executable File
#! /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
|