Easiest thing to do is to alter your table to have a default value of "blank" rather than NULL. Then you don't have the problem.
However, I don't see that you would have a problem unless you are using if's on the results. If your while loop is something like this:
<table><?
while ($array = mysql_fetch_array($qry)) { ?>
<tr>
<td><? echo $array[id];?></td>
<td><? echo $array[name];?></td>
<td><? echo $array[hooha];?></td>
</tr><?
} >
</table>
A null value won't mung up the format in the above. How are you killing your table?
Reputation Points: 15
Solved Threads: 0
Junior Poster in Training
Offline 50 posts
since Mar 2005