Esempio n. 1
0
function profileTable($player)
{
    echo "<div class=\"grid_5 alpha\"> <div id=\"gatherling_lefthalf\">\n";
    infoTable($player);
    bestDecksTable($player);
    echo "</div></div>\n";
    echo "<div class=\"grid_5 omega\"> <div id=\"gatherling_righthalf\">\n";
    medalTable($player);
    trophyTable($player);
    echo "</div> </div>\n";
    echo "<div class=\"clear\"></div>";
}
Esempio n. 2
0
function profileTable($player)
{
    echo "<table style=\"border-width: 0px\" align=\"center\" width=600>\n";
    echo "<tr><td valign=\"top\">";
    infoTable($player);
    echo "</td><td align=\"right\" valign=\"top\">";
    medalTable($player);
    echo "</td></tr>";
    echo "<tr><td>&nbsp</td></tr>";
    echo "<tr><td valign=\"top\">";
    bestDecksTable($player);
    echo "</td><td align=\"right\">";
    trophyTable($player);
    echo "</td></tr>";
    echo "</table>";
}