I had write a simple html code and save it as testing.html in eclipse. Below are the code:
<html>
<body>
<?php
function helo()
{
echo "hello";
}
echo "say ";
helo();
?>
</body>
</html>
When I run via apache Tomcat, it did not show any things in my browser. I had tried to write a simple html code (without php code inside the html code) and it can run via apache Tomcat. May I know why this happen? Is it something wrong with my code? Or some thing go wrong when I set up in eclipse?