I am trying to change the layout of the following text.
12157 W Linebaugh Avenue, #122
TampaFlorida33626
USA
Notice the city,state,zip line. Here is the code that is driving it.
<td valign="top">
<?php
echo $contact->suburb;
echo $contact->state;
echo $contact->postcode;
?>
</td>
I would like it to read correctly as follows:
12157 W Linebaugh Avenue, #122
Tampa, Florida 33626
USA
I am just beginning with programming and this is over my head.
Start Free Trial