1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
| <?php
if(isset($_GET['ok']) && isset($_GET['str']) && $_GET['str'] != "")
{
$sql = "SELECT * FROM document WHERE etab='".$_GET['str']."' ";
$rep = mysql_query("$sql") ;
$num=1;
while($data3 = mysql_fetch_array($rep))
{
$num++;
// Utiliser Modulo 2 afin de vérifier si le $num est égal à 0.
if(($num%2)!=0)
{
$bg="#dddddd";
}
else
{
$bg="#cecece";
}
?>
<table width="90%" align="center" border="0" bgcolor="#dddddd">
<tr bgcolor="<?php echo $bg ?>" align="center">
<td width="12%"><a href="<?php echo htmlentities(trim($data3['chemin_doc'])); ?>" title="Document à télécharger" target="_blank"><font color="grey" size="2"><strong><?php echo $data3['nom']; ?></a></strong></font></td>
<td width="20%"><a href="<?php echo htmlentities(trim($data3['chemin_doc'])); ?>" title="Document à télécharger" target="_blank"><font color="grey" size="2"><strong><?php echo $data3['objet']; ?></a></strong></font></td>
<td width="10%"><a href="<?php echo htmlentities(trim($data3['chemin_doc'])); ?>" title="Document à télécharger" target="_blank"><font color="grey" size="2"><strong><?php echo $data3['categorie']; ?></a></strong></font></td>
<td width="20%"><a href="<?php echo htmlentities(trim($data3['chemin_doc'])); ?>" title="Document à télécharger" target="_blank"><font color="grey" size="2"><strong><?php echo $data3['etablissement']; ?></a></strong></font></td>
<td width="8%"><a href="<?php echo htmlentities(trim($data3['chemin_doc'])); ?>" title="Document à télécharger" target="_blank"><font color="grey" size="2"><strong><?php echo date("d/m/Y", strtotime($data3['date_doc']));?></a></strong></font></td>
</tr>
</table>
<?php
}
}
Else
{
?>
<table width="90%" align="center" border="0" bgcolor="#dddddd">
<tr bgcolor="<?php echo $bg ?>" align="center">
<td width="12%"><font color="grey" size="2"><strong><?php echo "Aucun" ?></a></strong></font></td>
<td width="20%"><font color="grey" size="2"><strong><?php echo "Aucun" ?></a></strong></font></td>
<td width="10%"><font color="grey" size="2"><strong><?php echo "Aucun" ?></a></strong></font></td>
<td width="20%"><font color="grey" size="2"><strong><?php echo "Aucun" ?></a></strong></font></td>
<td width="8%"><font color="grey" size="2"><strong><?php echo "Aucun"?></a></strong></font></td>
</tr>
</table>
<?php
}
?> |
Partager