When and how use "<?="........... on php?

Clint P

New member
You can use <?= format as a shortcut to echo. For example, these two are equivalent lines:

<? echo $Variable; ?>
<?=$Variable?>
 
You can use <?= format as a shortcut to echo. For example, these two are equivalent lines:

<? echo $Variable; ?>
<?=$Variable?>
 
You can use <?= format as a shortcut to echo. For example, these two are equivalent lines:

<? echo $Variable; ?>
<?=$Variable?>
 
Back
Top