I have modifed the PHP code but I find that the all the PHP statement couldn't work. eg.
<html>
<head><title>Hello World Script</title></head>
<body>
First Message
<? include("head.inc") ?>
</body>
</html>
This is not work at all unless I modify the code as
<html>
<head><title>Hello World Script</title></head>
<body>
First Message
<?php include("head.inc") ?>
</body>
</html>
Is there a way to modify the environment such that I don't need to change each statement one by one ?
Thanks
Start Free Trial