Quote Originally Posted by vineesh View Post
One more thing I noticed,

In the code you given in Day 1 Post (here), under the line 'Paste following content to that file.'

Code:
<?php

echo "Hello from PHP";
Seems '?>' missing.

Is that not compulsory or you missed it?

As per PHP Coding Style Guide never use ending ?>

http://www.php-fig.org/psr/psr-2/

Only use ?> if you want to write non PHP code after PHP Code block ended, for example

Code:
<html>
<body>

<?php

echo "Welcome";

?>

</body>
</html>