I am trying to make an alignment for a profile page. The image attached shows how the 5 tables would look. I have 4 of them working, but don't know how to add the 5th one which is where it says Ban/Alliance Info.
PHP Code:
$page .= "<center><h3><font color=white>Player Profile for ".$profile['name']."</font></h3></center><p>";
$page .= "<table class='ex1' border='1' width='100%'>";
$page .= "<tr><td width='50%'><b>Player Name:</b> ".$user['name']."<br />
<b>Player ID:</b> ".$user['id']."<br />
<b>Player Class:</b> $cclass</td>";
$page .= "<td width='50%' ><a href=\"images/profiles/testimage.jpg\" rel=\"lightbox\" title=\"Test\"><img src=\"images/profiles/testimage2.jpg\"></a> <a href=\"images/profiles/testimage3.jpg\" rel=\"lightbox\" title=\"Test\"><img src=\"images/profiles/testimage4.jpg\"></a></td></tr>";
$page .= '</table>';
$page .= "<table class='ex1' border='1' width='100%'>";
$page .= "<tr><td width='50%'><b>AIM:</b> ".$user['aim']."</td>";
$page .= "<td width='50%'>Comments</td></tr>";
$page .= '</table>';
Comment