Forum Moderators: phranque
By default files need to have a .php extension before they will be executed as php code.
The alternative is to force the server to render .html as if would. php
Try the following as a test.
<?php
echo 'Hello World!';
?>
Save the above as test.php and upload it to your server. Call test.php in your browser. This will let you know that php is being handled correctly.
Mack.