Printing HTML with a here document : here document « String « PHP






Printing HTML with a here document

 
<?
print <<< HTML
There are <b>5</b> left.
<p>
HTML;
?>
  
  








Related examples in the same category

1.Concatenation with a here document
2.Interpolating in a here document
3.Defining a here document
4.More here documents