jasmin: print "Content-Type: text/html\n\n"; im php

Beitrag lesen

Hallo

im cgi geht so:

#!/usr/bin/perl -w
print "Content-Type: text/html\n\n";
print <<__geht__;

" ohne "
__geht__

wie geht dass eigendlich im PHP:

<?php
echo "Content-Type: text/html\n\n";
echo <<__geht__;

" ohne "
__geht__

?> geht nicht

vielen Dank für Hilfe

jasmin