When developing PHP scripts, I often find people logging ‘bugs’ about missing closing PHP tags. i.e. ?>
I want to make something clear, this is not a requirement unless you plan to stop PHP and output HTML. The following is a 100% valid PHP file:
<?php
echo “Hello, World!”;
Why do it? The best reason of all is to [...]




