Hi All,
This may be a dumb question, but I am going to post it anyway. 🙂
I have an SQL table I am looping thru and displaying the data in a dynamic table. My issue is it has an empty field the td does not display the table data border.
IE I do a ...
if(!$row['Initial']) {
echo "<td width=10> </td>";
} else {
echo "<td width=10>".$row['Initial']."</td>";
}
and when I check the source code, instead of a value of ..
I get...
Here is an example of my test page...
Notice the "Initial" table data cell formating.
The value in the SQL field is not "NULL" FYI.
I am missing something simple here.
I appreciate your help in advance,
Don