no, it does no harm, but if you do this, for example:
<div><?php echo $x; ?></div>
You can use short tags (if included in your php configuration)
<div><? echo $x; ?></div>
If you want to try to reduce the number of php tags, you can even echo html like this:
echo '<div>'.$x.'</div>';
martincarlin87
source share