Translations:PHP/6/en

From pronounmail wiki
Jump to navigation Jump to search

Sometimes you'll want to insert some values from PHPland into your HTML, which you can do like this:

<?php
$my_value = "hello!";
?>

<p>
  <?= $my_value ?>
</p>