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>"; }
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> </td></tr>"; echo "<tr><td valign=\"top\">"; bestDecksTable($player); echo "</td><td align=\"right\">"; trophyTable($player); echo "</td></tr>"; echo "</table>"; }
$details[T_('File size')] = humanSize($DATA["size"]); $details[T_('Download link')] = "<a class=\"ticketid\" href=\"{$ticketUrl}\">" . htmlEntUTF8($ticketUrl) . "</a>"; // downloads if ($DATA["downloads"]) { $details[T_("Download count")] = $DATA["downloads"]; $details[T_("Last download")] = date($dateFmtFull, $DATA["last_stamp"]); } // sent-to if ($DATA["sent_email"]) { $addrs = array(); foreach (getEMailAddrs($DATA['sent_email']) as $email) { $addrs[] = '<a href="mailto:' . urlencode($email) . '">' . htmlEntUTF8($email) . '</a>'; } $details[T_("Initially sent to")] = implode(", ", $addrs); } infoTable($details); ?> <form enctype="multipart/form-data" method="post" onsubmit="validate(event);" action="<?php echo $ref; ?> " > <ul> <li> <?php $error = @$_POST["submit"] === $act && empty($_POST["name"]); $class = "description required" . ($error ? " error" : ""); ?> <label class="<?php echo $class;