Some cases where PHP short tags should be avoided
Most of the time when creating email template in PHP , we may need to separate some files and include these . But including these files with shorthand cause some display problem .
1 |
<?=include('includes/header.php');?> |
...