gaetan7 et mon cul, c'est du poulet? | bon, j'ai fait ça
Code :
- <?php
- //connexion
- require("connect.php" );
- $aMonthNames = array (1 => 'janvier', 2 => 'février', 3 => 'mars', 4 => 'avril', 5 => 'mai', 6 => 'juin', 7 => 'juillet', 8=> 'aout', 9=> 'septembre', 10 => 'octobre', 11=> 'novembre', 12 => 'decembre');
- $sQuery = 'SELECT MONTH(date) AS mois FROM dates';
- $rReq = mysql_query ($sQuery) or die (mysql_error());
- while ($aRes = mysql_fetch_assoc($rReq)) {
- $aMois[] = $aRes['mois'];
- }
- foreach ($aMois as $mois) {
- echo $aMonthName[$mois], '<br />';
- $sQuery = 'SELECT * FROM dates WHERE MONTH(date) = \''.$mois.'\' ORDER BY id';
- $rReq = mysql_query ($sQuery);
- while ($row= mysql_fetch_assoc ($rReq)) {
- $id_print = $row['id'];
- list($year, $month, $day) = explode("-", $row['date']);
- $contenu = nl2br($row[contenu]);
- //affichage
- echo "<table border=\"0\" cellspacing=\"0\">";
- echo "<tr>";
- echo $lastmodified = "<td class=\"texte-11\">$day/$month</td>";
- echo "<td class=\"texte-11\">".$row[ville_pays]."</td>";
- echo "<td class=\"texte-11\"> - ".$row[nom_salle]."</td>";
- echo "<td class=\"texte-11\">[ <a href=\"#\" onClick=\"window.open('fr-tour_info.php?&id=$id_print','Infos','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=1, copyhistory=0, menuBar=0, width=500, height=200, left=150, top=150');return(false)\">Infos</a> ]</td>";
- echo "</tr>\n";
- echo "</table>";
- }
- }
- ?>
|
il m'affiche 6 fois la même chose ?? Message édité par gaetan7 le 10-03-2006 à 14:40:23
|