Exemplo n.º 1
0
echo "    &nbsp;</td>\n";
echo "    <td width='20' rowspan='4'>&nbsp;</td>\n";
echo "    <td rowspan='4' align='center' valign='top'>\n";
//Fin des stats
//Affichage Centre
echo "\t\t<table width='100%'>\n";
echo "\t\t <tr>\n";
echo "\t\t  <td>\n";
//Table histo
echo "         <table width=\"100%\" class='mh_tdborder'>\n";
echo "           <tr>\n";
echo "            <td height='30' align='center'><img src=\"images/quepassado.gif\"></td>\n";
echo "           </tr>\n";
echo "           <tr>\n";
echo "            <td class='mh_tdpage' align='center'>\n";
AfficheHistoEvt($requete_histo_evt);
echo "       <br></td>\n";
echo "          </tr>\n";
echo "          <tr>\n";
echo "           <td align='right'><a href=\"#haut\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('up','','images/up_over.gif',1)\"><img src=\"images/up.gif\" name=\"up\" border=\"0\"></a></td>\n";
echo "          </tr>\n";
echo "      </table><br>\n";
//Table trolls
echo "         <table width='100%' class='mh_tdborder'>\n";
echo "           <tr>\n";
echo "            <td height='30' align='center'><img src='images/trolls.gif'></td>\n";
echo " \t         </tr>\n";
echo "           <tr>\n";
echo "            <td class='mh_tdpage' align='center'>\n";
AfficheGraphAxe($date);
//Pour chacun des trolls on apelle la fonction d'affichage
Exemplo n.º 2
0
function AfficheHisto($requete)
{
    //Affiche la page d'historique des évènements d'un monstre
    echo "<table width='80%' border='0' cellpadding='0' cellspacing='2' class='mh_tdborder' align='center'>";
    echo "<tr class='mh_tdtitre'><td>";
    echo "<table border='0' class='mh_tdborder' cellpadding='0' cellspacing='1' width='100%' align='center'>";
    echo "<tr valign='middle'>";
    echo "<td height='60' width='100%' align='center'><img src=\"images/voir_histo_black.gif\" border=\"0\"></TD>";
    echo "</tr>";
    echo "<tr valign='middle' class='mh_tdpage'>";
    echo "<td width='100%' align='center'>";
    AfficheHistoEvt($requete);
    echo "</td>";
    echo "</tr>";
    echo "<tr>";
    echo "<td align='right'><a href=\"#haut\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('up','','images/up_over.gif',1)\"><img src=\"images/up.gif\" name=\"up\" border=\"0\"></a></td>";
    echo "</tr>";
    echo "</table>";
    echo "</td></tr>";
    echo "</table>";
}