sampleTableQuotes.php

Source of sampleTableQuotes.php

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