Le jour où tu changes d'avis, tu n'auras qu'un seul endroit à modifier..
Mais pour mon exemple, ça ne change rien.
Tu peux écrire:
<b>du texte statique</b>
<div id="xxx">
<?php
echo "du texte pas statique:";
echo date("d/m/Y");
?>
</div>
ou alors:
<b>du texte statique</b>
<?php
echo "<div id=\"xxx\">";
echo "du texte pas statique:";
echo date("d/m/Y");
echo "</div>";
?>