[RESOLU] afficher une liste sauf un

afficher une liste sauf un [RESOLU] - PHP - Programmation

Marsh Posté le 26-06-2006 à 14:14:51    

Bonjour à tous,  
 
Je cherche à faire un menu. J'ai une table entreprise dans ma base. Je souhaite avoir toute la liste de mes filiales sauf un. Voici mon code pour afficher toute ma liste :  

Code :
  1. <ul>
  2.             <?
  3.             $sql_pilot = " SELECT fil_cle, fil_lib FROM filiales ORDER BY fil_lib ASC ";
  4.             $qry_pilot = pg_query($conn, $sql_pilot);
  5.             while ($result_pilot = pg_fetch_assoc($qry_pilot))
  6.              {
  7.             ?>
  8.             <li><a href="pilotage.php?fil=<?=$result_pilot['fil_cle']?>" target="xxx"><?=$result_pilot['fil_lib']; }?></a></li>
  9.             <?
  10.              }
  11.             ?>
  12.            </ul>


Je voudrais que quand fil_cle = 7 son nom n'apparaisse pas dans ma liste, et ne pas créer un trou (espace blanc) pour autant.
Y'a-t-il une solution?


Message édité par jenny50 le 26-06-2006 à 14:34:01
Reply

Marsh Posté le 26-06-2006 à 14:14:51   

Reply

Marsh Posté le 26-06-2006 à 14:24:39    

Code :
  1. <ul>
  2. <?
  3. $sql_pilot = " SELECT fil_cle, fil_lib FROM filiales ORDER BY fil_lib ASC ";
  4. $qry_pilot = pg_query($conn, $sql_pilot);
  5. while ($result_pilot = pg_fetch_assoc($qry_pilot))
  6. {
  7.    if ($result_pilot['fil_cle'] != '7')
  8.    {
  9.       ?>
  10.       <li><a href="pilotage.php?fil=<?=$result_pilot['fil_cle']?>" target="xxx"><?=$result_pilot['fil_lib']; }?></a></li>
  11.       <?
  12.    }
  13. }
  14. ?>
  15. </ul>


 

Reply

Marsh Posté le 26-06-2006 à 14:33:42    

ok c'est super je te remercie

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed