I had created a sample HTML for Table where I have 3 columns and 2 rows.
<!DOCTYPE html>
<html>
<body>
<table border='1' width='400px' cellspacing="0" cellpadding="2" height='100%' style='color: black;'>
<tr style='color: #fff; background: black;'>
<th>column1</th>
<th>column2</th>
<th>column3</th>
</tr>
<tr>
<td></td><td> </td><td> 1234</td>
</tr>
<tr>
<td> 190</td><td> 2</td><td>454545</td>
</tr>
</table>
</body>
</html>
The table created successfully but the separator is missing between the columns where the data is not available. This issue occured only in IE, in Mozilla it works fine. Can anyone help me to find out a solution for this?

<td><?=( empty($row['column1']) ) ? ' ' : $row['column1'] ?></td>