I cannot display using php, what am I doing wrong ?
I have this file :
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
in a file called test.html
.
When I open that file in my browser, there is nothing shown.
Where is my problem ?