helloHeredoc.php

Source of helloHeredoc.php

<!DOCTYPE html>
<html lang = "en-US"> 
<head>
  <meta charset = "UTF-8">
  <title>helloHeredoc</title>
</head>
<body>
<?php
$name = "John";
$address = "123 Main St.";
print <<<HERE
<table style = "border: 1px solid black">
   <tr>
    <td>name</td>
    <td>$name</td>
  </tr>
  <tr>
    <td>address</td>
    <td>$address</td>
  </tr>
</table>
HERE;
?>
</body>
</html>