I have a series of echo statements that are going to be a pain as I need to add more formatting. I found an example of HEREDOC here that looked pretty good.
I want to replace these series of echo statements but it is not working.
Existing code:
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['EmpFirstName'] . "</td>";
echo "<td>" . $row['EmpLastName'] . "</td>";
echo "</tr>";
}
echo "</table>";
New attempt (not working)
while($row = mysqli_fetch_array($result))
{
echo <<<EOL
<tr>
<td>" . $row['EmpFirstName'] . "</td>
<td>" . $row['EmpLastName'] . "</td>
</tr>
}
</table>
EOL;