Oh, now I understand... thanks! What puzzles me now is that it worked for the first number but as soon as I added the other columns everything disappeared again...
Code:
<div class="col-phone"><?php echo ($client['phone1'] != '')?$client['phone1']:' ';?></div>
<div class="col-phone"><?php echo ($client['phone2'] != '')?$client['phone2']:' ';?></div>
<div class="col-phone"><?php echo ($client['phone3'] != '')?$client['phone3']:' ';?></div>
<div class="col-phone"><?php echo ($client['phone4'] != '')?$client['phone4']:' ';?></div>
It doesn't make logical sense to me that the additional lines would make the first line stop working. Thanks so much for your help.
Bookmarks