1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23: | <form name="form1" method="post" action="">
<table width="314" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="145">Beschreibung des Item: </td>
<td width="169"><textarea name="text" id="text"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Übersetzen">
<input name="fertig" type="hidden" id="fertig" value="1"></td>
</tr>
</table>
</form>
<?php
if ($fertig){
$abc = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$zyx = strrev($abc);
$text = strtr($text, $abc, $zyx);
echo $text;
}
?> |