PERL:
print <<"EndOfText";
freier Text, wo alle Sonderzeichen, mehrere Zeilen usw. enthalten sein koennen, auch " ist > erlaubt.
Das EOT wird erst ab PHP4 unterstützt (die aktuelle Beta3 kann es auch schon) im EOT sind auch Variablen erlaubt !
Beispiel aus http://hotwired.lycos.com/webmonkey/99/51/index3a_page4.html?tw=programming
<?php
$x = "World";
print <<<EOF
<pre>
Hello $x 1.
This is a line of text.
</pre>
EOF;
?>
nennt sich da HERE PRINTING
lg
Ludwig