Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/statistic/clickstatsproduct.phtml
<?php 
function  checkColorSource($source) {
	$color = "black";
      if ($source == 'Redirection : Hello Pro') {
            $color = "blue";
      } 
      return $color;
}

?>

<table cellpadding="0" cellspacing="5" border="0" width="800px">
<tr class="linkHeader" align="center">
	<th width="500px">URL</th>
	<th width="200px">SOURCE</th>
	<th width="100px">CLICKS</th>
</tr>

<?php foreach($this->listClick as $row) { ?>
<tr style="color: <?php echo checkColorSource($row['SOURCE']); ?>">
	<td align="left" ><?php echo $row['URL']; ?></td>
	<td align="left" ><?php echo $row['SOURCE']; ?></td>
	<td align="center" ><?php echo $row['NbURL']; ?></td>
</tr>
<?php } ?>
</table>