Search results

  1. C

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

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