示例#1
0
</table>
	<br/>
	<br/>
<table width="80%" class='mh_tdborder' align='center' cellspacing='0'>
	<tr class='mh_tdtitre' align='center'>
		<td  width='70%' class='mh_tdpage'>
			<br/>
			<?php 
// Si le troll est connecté l'équipements est affiché
if (isset($_SESSION["AuthTroll"])) {
    echo htmlEquipements($_SESSION["AuthTroll"]);
}
?>
			<br/>
		</td>
		<td id='pmt_troll' width='30%' class='mh_tdpage'>
			<?php 
// Si le troll est connecté ses stats sont affichées
if (isset($_SESSION["AuthTroll"])) {
    $troll = new c_Troll($_SESSION["AuthTroll"], $_SESSION["AuthNomTroll"]);
    $troll->getTroll();
    $troll->applyEquipement();
    $trollHTML = new c_TrollHTML($troll);
    echo $trollHTML->htmlGetProfil();
}
?>
		</td>	
	</tr>
</table>
<?php 
include '../foot.php';