When I set content type at the top of a simple PHP script:
<?php
header('Content-type: text/plain; charset=utf-8');
echo "<P>this is a paragraph</p>";
?>
The page is served as HTML source code (not php, just the HTML).
<P>this is a paragraph</p>
Why is that?