This is working when I open it with ubuntu terminal
First.php
 <?php
    echo "My first PHP script!";
    ?> 
But I have made one HTML with Same confiuration
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
When I open it in browser it shows empty
Any help will be appreciated
 
     
     
    