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
|
<?php
mysql_connect("A", "Z", "E"); // Connexion à MySQL
mysql_select_db("R"); // Sélection de ma base de donnée
$reponse = mysql_query("SELECT COUNT(*) theme FROM agricole"); // Requête selectionnant le nombre de theme entré dans la database
$theme = mysql_query("SELECT theme FROM agricole"); // Requête selectionnant les thêmes existants
$test = 0;
$ligne=mysql_fetch_object($reponse);
$test = $ligne->theme;
mysql_close();
?>
<table bgcolor="#849a00", align="center">
<br><br><br><br><br>
<td width="400"> <strong>Titre du theme</strong> </td>
<td width="130", align="center"> <strong>Voir</strong> </td>
<td width="130", align="center"> <strong>Modifier</strong> </td>
<td width="130", align="center"> <strong>Supprimer </strong></td>
</table>
<?php
$donnees = mysql_fetch_array($theme); // On se place sur le premier theme
for ( $nombre_ligne = 1; $nombre_ligne <= $test; $nombre_ligne ++)
{
if ($nombre_ligne%2 == 1 )
{ //Nombre Impair
?>
<table bgcolor="#999999", align="center">
<td width="400"><?php echo $donnees['theme']; ?> <br ></td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/voir.gif" width="15" height="15" border="0" > </td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/modif.gif" width="15" height="15" border="0"> </td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/suppr.gif" width="15" height="15" border="0"> </td>
</table>
<?php
}else
{ // Nombre Pair
?>
<table bgcolor="#CCCCCC", align="center">
<td width="400"><?php echo $donnees['theme']; ?><br ></td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/voir.gif" width="15" height="15" border="0" > </td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/modif.gif" width="15" height="15" border="0"> </td>
<td width="130", align="center"> <img src="http://sango69780.ifrance.com/images/suppr.gif" width="15" height="15" border="0"> </td>
</table>
<?php
}
$donnees = mysql_fetch_array($theme); // On passe au theme suivant
}
?> |
Partager