我正在使用Heredoc语句来打印html,但是如何将php代码嵌入该html中,例如:
$results = $conn->query($sql);
$html = <<<html
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>ID</th>
<th>Technician</th>
<th>Project</th>
<th>Region</th>
<th>Date</th>
<th>Type</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<?php while($row = $results->fetch_assoc()):
<tr>
<td>{$row['ID']}</td>
<td>{$row['Technician']}</td>
<td>{$row['Project']}</td>
<td>{$row['Region']}</td>
<td>{$row['Date']}</td>
<td>{$row['Type']}</td>
<td>{$row['Notes']}</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
html;
我们该怎么做。 。
。