I have a form on my site where members fill in info etc... This info goes into my database, I call to my DB to display this info in a table. My problem is that when someone does not fill in one of the spots in the form this goes to the DB as null and wont show up in my table, this makes my whole table get messed up and won't line up with the users information. My question is how can I get the null values to display null or show up blank in the table cell?
Here is the code I have would I put it
Here:
$sql="select id, name, email from update_table order by id";
Or in the actual table:
<table><td><tr>
<a href="profile.php?user=<?echo $row2;?>"><?echo $row2;
</tr></td?</table>
I have been trying to figure this out for weeks. Someone please help me out. :confused: