Array ( [0] => Robert [FirstName] => Robert [1] => Baker [LastName] => Baker [2] => []
[email protected][/] [Email] => []
[email protected][/] )
That is what your looking for
if ( $mem_email != "" ) {
echo <<< UNSPRINT
<tr>
<td align="center" class="$strColor">
<font class="medium">
<a href="mailto:$mem_email">
$mem_firstname
$mem_lastname
</a>
</font>
</td>
</tr>
UNSPRINT;
} else {
echo <<< UNSPRINT
<tr>
<td align="center" class="$strColor">
<font class="medium">
$mem_firstname
$mem_lastname
</font>
</td>
</tr>
UNSPRINT;
}
I use that above to make it look like this Robert Baker with his email address as an <a href tag
So as I am asking there are 3 arrays in every row but I already define how they are displayed. I need to take the total rows and divide them into two columns. I hope that is clear enough.