Hi folks,
I have some php pages that I wrote on my redhat box, and am now porting them to another server (external hosting company running apache on unix).
I'm having a bit of a time getting the php code within the html pages to work/display properly.
For instance if I display test.php in a web browser, ir works perfectly.
test.php
<?php
echo "Hello world";
?>
However, if I try test.html, nothing displays, and when I view source, I see the php code.
test.html
<html>
<body>
<?php
echo "Hello world";
?>
</body>
</html>
What am I doing wrong?
Stumped