php opening tags 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
Example 3: open php tag
<?php
echo "in the tag!";
?>