I have the following code that pulls addresses from mysql. Not that some have one address and others may have nine addresses. Right now it lists the addresses in
- :
How can I make it display the results in a 3 column table
Here is the code I currently have:
[CODE]
Office Locations
<?php $total=get_post_meta($post->ID,'total_addresses',true);?>-
<?php for($i=1;$i<=$total;$i++): ?>
<?php $address=get_post_meta($post->ID,"em_address_$i",true); ?>
- <?php echo $address; ?> <?php endfor;?>
Please forgive me if I have not provided enough information. I am imagining that is the only area that needs edited