Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64
Your IP : 3.143.24.110
<?php
if (!isset($generateEventColumn)) $generateEventColumn = 3;
$events_column_width = ($generateEventColumn == 2) ? 191 : 159;
$events_article_column_width = ($generateEventColumn == 2) ? 172 : 140;
$events_column_bgcolor = ($generateEventColumn == 2) ? '#BBBFCE' : '#8a92ab';
//Get the temple flags
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_show_fr'", $mysql_link));
$temple_show = $row[var_num];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_title_fr'", $mysql_link));
$temple_title = $row[var_text];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_pic_fr'", $mysql_link));
$temple_pic = $row[var_num];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_link_fr'", $mysql_link));
$temple_link = $row[var_text];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_desc_fr'", $mysql_link));
$temple_desc = $row[var_text];
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM lhjmq_variables WHERE id_var = 'temple_photo_fr'", $mysql_link));
$temple_photo = $row[var_text];
?>
<!-- HALL of FAME -->
<?php if ($temple_show == 1) { ?>
<table width="<?php echo $events_column_width; ?>" border="0" cellspacing="0" cellpadding="0" style="background-color: <?php echo $events_column_bgcolor; ?>" class="lightTableBg" align="center">
<tr>
<td>
<!--- TITLE BAR --->
<table width="<?php echo $events_column_width; ?>" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="20" align="left" valign="top"><img src="../images/int_nouvelle/nouvelle_seperator_section<?php echo $generateEventColumn; ?>.gif" width="<?php echo $events_column_width; ?>" height="3"><br /><img src="images/nouvelles/halloffame_title<?php echo $generateEventColumn; ?>.gif" width="<?php echo $events_column_width; ?>" height="14"></td>
</tr>
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2"><spacer type="BLOCK" width="<?php echo $events_column_width; ?>" height="2"></td>
</tr>
<?php if ($temple_title != "") { ?>
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2"><span class="blackText10px"><?php echo $temple_title; ?></span></td>
</tr>
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2"><spacer type="BLOCK" width="<?php echo $events_column_width; ?>" height="2"></td>
</tr>
<?php } ?>
</table>
<?php if ($temple_pic == 1) { ?>
<table width="<?= $events_column_width ?>" border="0" cellspacing="0" cellpadding="0" class="outlinetab" align="center">
<tr>
<td align="center" bgcolor="#FFFFFF">
<?php if ($temple_link != "") { ?>
<a href="<?= $temple_link ?>">
<?php } ?>
<img src="<?= $temple_photo ?>" border="0"><?= ($temple_link != "" ? '</a></td>' : '') ?>
</td>
</tr>
</table>
<?php } ?>
<?php if ($temple_desc != "") { ?>
<table width="<?php echo $events_column_width; ?>" border="0" cellspacing="0" cellpadding="0" style="background-color: <?php echo $events_column_bgcolor; ?>" class="lightTableBg" align="center">
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2" class="cellPadding2"><spacer type="BLOCK" width="<?php echo $events_column_width; ?>" height="2"></td>
</tr>
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2" class="cellPadding2"><span class="blackText10px"><?php echo $temple_desc; ?></span></td>
</tr>
<tr>
<td align="left" valign="top" width="<?php echo $events_column_width; ?>" height="2" class="cellPadding2"><spacer type="BLOCK" width="<?php echo $events_column_width; ?>" height="2"></td>
</tr>
</table>
<?php
}
?>
</td>
</tr>
</table>
<?php
}
?>
|