As per the instruction i have successfully installed apache 2.2 web server Also php 5.3.5 has also been successfully installed .. As per the instruction i created a php file and checked whether the php installation was successful ,it also worked ..
The php file i created as per the instruction:
<?php
phpinfo();
?>
It worked.All is good till here...But whenever i embbed php script in html file and try to excess tht file ,the script in the HTML file doesnt run ..
for e.g
<html>
<body>
<?php
echo "hlw everyone";
?>
</body>
</html>
Saving the file and trying to access it doesnot output "hlw everyone " in the document..Can someone let me knw why is this happening..