Zakaln

Untitled

May 12th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <div id="categories">
  2.  
  3. <?php
  4. include('../Connexion/Connexion.php');
  5. mysql_query("SET NAMES 'UTF8_bin'");
  6. mysql_query('SET CHARACTER SET utf8');
  7.  
  8. $req=mysql_query("select * from categorie ") ;
  9. if(mysql_num_rows($req)>0)
  10. ?>
  11. <table width='15%' cellspacing=''>
  12. <tr><th>N°</th>
  13. <th>Catégorie</th>
  14. </tr>
  15.  
  16. <?php
  17. {
  18. while($lin=mysql_fetch_array($req))
  19. { echo"<table width='20%' cellspacing='5'>";
  20. echo"<tr><td>";
  21. echo $lin["id_categorie"];
  22. echo "</td><td>";
  23. echo $lin["description"];
  24. echo"</td></tr></table>";
  25. }
  26. }
  27. echo"</table>";
  28. ?>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment