Thank you again for your kind help.
Now I kept getting an error message. Would you mind to correct my code?
$theResults=<<<EOD
<html>
<body>
<!-- This is the container -->
<div style="position:relative; width:960px;height:auto;margin-left:auto;margin-right:auto; padding: 0 20px; background: #FFFFFF;border: 0px solid #000000;z-index:1;">
<table>
<tr>
<td style="text-align:right;font-weight:bold;">applies to: </td>
<td>
EOD;
foreach($make as $row){
$theResults.=<<<EOD
<p>$row</p>;
EOD;
}
$theResults.=<<<EOD
</td>
</tr>
</table>
</div>
</div> <!-- container ending -->
</body>
</html>
EOD;
print "$theResults";