close php file code example
Example 1: short-open tags in php
<?="Hello world";?>
<?="Hello world"?>
Example 2:
<?php
echo "Hello world";
// ... more code
echo "Last statement";
// the script ends here with no PHP closing tag
<?="Hello world";?>
<?="Hello world"?>
<?php
echo "Hello world";
// ... more code
echo "Last statement";
// the script ends here with no PHP closing tag