PHP open tag code example
Example 1: short-open tags in php
<?="Hello world";?>
<?="Hello world"?>
Example 2: php short tag
<?= //do stuff here; ?>
Example 3: open php tag
<?php
echo "in the tag!";
?>
<?="Hello world";?>
<?="Hello world"?>
<?= //do stuff here; ?>
<?php
echo "in the tag!";
?>