home page, how to add info on the tables displayed
Posted: 2015-04-14 13:58
i have the following code on my home page and i want to add text that explains each table how can i to that
Code: Select all
<div class="row" id="table_links">
<?php
/* accessible tables */
if(is_array($arrTables) && count($arrTables)){
$i=0;
foreach($arrTables as $tn=>$tc){
$tChkFF = array_search($tn, array());
$tChkHL = array_search($tn, array());
if($tChkHL !== false && $tChkHL !== null) continue;
$searchFirst = (($tChkFF !== false && $tChkFF !== null) ? '?Filter_x=1' : '');
?>
<div align="center" id="<?php echo $tn; ?>-tile" class=" <?php echo ( $block_classes['other']['grid_column']); ?>">
<div class="">
<div class="container1"><br><br><br><br>
<a class="" title="<?php echo preg_replace("/&(#[0-9]+|[a-z]+);/i", "&$1;", htmlspecialchars(strip_tags($tc[1]))); ?>" href="<?php echo $tn; ?>_view.php<?php echo $searchFirst; ?>"><?php echo ($tc[2] ? '<img src="">' : '');?><strong><font size="4"><?php echo $tc[0]; ?></font></strong></a><br><br>
<div class=""><?php echo $tc[1]; ?></div>
</div>
</div>
</div>
<?php
$i++;
}
}else{
?><script>window.location='index.php?signIn=1';</script><?php
}
?>
</div>