I am trying to have XAMPP's Apache execute <?php ... ?
that is embedded in a HTML document:
<html>
<head><title>abc</title></head>
<body>
<?php
echo("bla");
?>
</body>
</html>
However, the <?php ... ?>
part is not "executed" and transferred to the browser verbatim.
I suppose there is a configuration file that I have to change so that the piece of php is executed.