sampleTableQuotes.php

Source of sampleTableQuotes.php

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<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>