Translations:PHP/6/en: Difference between revisions

From pronounmail wiki
Jump to navigation Jump to search
FuzzyBot (talk | contribs)
Importing a new version from external source
 
(No difference)

Latest revision as of 18:25, 3 February 2025

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (PHP)
Sometimes you'll want to insert some values from PHPland into your HTML, which you can do like this:
 <?php
 $my_value = "hello!";
 ?>
 
 <nowiki><p></nowiki>
   <?= $my_value ?>
 <nowiki></p></nowiki>

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>