Is there a way to avoid the \ escape character in an echo? This works fine but is hard to read. What is the recommended way to handle this?
while($row = mysqli_fetch_array($result))
{
echo "<td><input id=\"EmpFirstName\" name=\"EmpFirstName\" type=\"text\" value=\"" . $row['EmpFirstName'] . "\"></td>";
}
echo "</table>";