Hi,
unter IE 5.0 geht das wunderbar, nur unter NS 4.6 sehe ich bei
mir den quelltext ??? kann jemand weiterhelfen?
Das liegt nicht am Netscape, sondern am Server; es muß ein MIME-Typ
für .phtml-Dokumente gesetzt werden.
Die PHP-Tags werden bei deinem Dokument ja auch nicht interpretiert.
Beim Apache wäre das ein Eintrag alá
AddType application/x-httpd-php3 .phtml
Action application/x-httpd-php3 "/php3/php.exe"
bzw.
AddType application/x-httpd-php4 .phtml
Action application/x-httpd-php4 "/php4/php.exe"
Aber Achtung: das gilt für Windows ,)
Für Linux/Unix dürfte sich das
Action application/x-httpd-php4 "/php4/php.exe"
erledigen, da php über mod_php eingebunden wird.
mfg
CK1