Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.133.153.224
<?php
//Get the arena played in
$arena = arena_get_data($mysql_link, $partie['id_arena']);
?>
<TABLE width="625" border="0" cellpadding="0" cellspacing="0">
<TR>
<TD class="blackText11px">
<TABLE width="100%" border="0" cellpadding="0" cellspacing="0" class="outlinetab">
<TR align="center" valign="top" class="darkblueRow">
<TD nowrap class="whiteText12px"><STRONG>Match</STRONG></TD>
<TD nowrap class="whiteText12px"><STRONG>Date</STRONG></TD>
<TD nowrap class="whiteText12px"><STRONG>City</STRONG></TD>
<TD nowrap class="whiteText12px"><STRONG>Arena</STRONG></TD>
<TD nowrap class="whiteText12px"><STRONG>Time</STRONG></TD>
</TR>
<TR align="center" valign="middle">
<TD height="20" nowrap class="blackText10px"><?php echo $partie[id_match]; ?></TD>
<TD nowrap class="blackText10px"><?php echo $partie[date_match]; ?></TD>
<TD nowrap class="blackText10px"><?php echo $arena[$partie[id_arena]][adresse_ville]; ?></TD>
<TD nowrap class="blackText10px"><?php echo $arena[$partie[id_arena]][nom]; ?></TD>
<TD nowrap class="blackText10px"><?php echo substr($partie[heure_match], 0, 5); ?></TD>
</TR>
<TR align="center" valign="middle">
<TD height="20" colspan="5" nowrap class="blackText10px"><TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<TR align="center" valign="middle">
<TD height="20" nowrap class="whiteText12px"><TABLE border="0" cellpadding="0" cellspacing="0" class="blackText12px">
<TR>
<TD> </TD>
<TD> </TD>
<TD> </TD>
<TD> </TD>
<TD> </TD>
</TR>
<TR>
<TD height="65"><IMG src="<?php echo $equipe_vis[$partie['id_equipe_vis']]['hist_pic56x62']; ?>"> </TD>
<TD> <STRONG><?php echo $nomVis; ?></STRONG> </TD>
<TD> vs </TD>
<TD> <STRONG><?php echo $nomDom; ?></STRONG> </TD>
<TD> <IMG src="<?php echo $equipe_dom[$partie['id_equipe_dom']]['hist_pic56x62']; ?>"></TD>
</TR>
<TR>
<TD> </TD>
<TD> </TD>
<TD> </TD>
<TD> </TD>
<TD> </TD>
</TR>
</TABLE></TD>
</TR>
<TR align="center" valign="middle" class="darkBlueRow">
<TD width="60%" height="20" nowrap class="whiteText12px"><STRONG>Pre-Game Notes</STRONG></TD>
</TR>
<TR align="center" valign="middle" class="outlinetab">
<TD height="20" align="left" valign="top" class="blackText10px" style="padding:5px">
<?php if($partie[avnotes_en] != ""){
echo $partie[avnotes_en];
}else{
echo "<EM>No pre-game notes available for now</EM>";
} ?>
</TD>
</TR>
</TABLE></TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
|