<table class='resultats' cellspacing='0' cellpadding='2'>
<?php
foreach ($candidats as $elem)
{
?>
<tr class='resultats_ligne'>
<td class='resultats_photo'>
    <center>
<?php if (file_exists ($elec."/candidat/".$elem ['photo'])): ?>
<img src='<?php echo $elec;?>/candidat/<?php echo $elem ['photo'];?>' id=img_candidat>
<?php endif; ?>
    </center>
</td>
<td class='resultats_candidat'>
<?php echo $elem ['nom']."<br> ".$elem ['prenom']."";?>
</td>
<td class='resultats_voix'>
<?php echo $elem ['voix'];?>
</td>
<td class='resultats_tx'>
<?php echo $elem ['tx'];?>
</td>
</tr>
<?php
}
?>
</table>
<!--  graphe -->
<?php
$filename="";
$filename=$elec."/resultats.inc";
if($flag_graph==1 AND file_exists($filename)){
?>
<table class='resultats_graphe'>
<tr><td>
<img src="graph.php?idg=<?php echo $elec."/resultats";?>" alt="Election  <?php echo $elec;?>">
</td><tr>
</table>
<?php
}
?>