Guest User

Untitled

a guest
Aug 23rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Bienvenue sur le site</title>
  5. </head>
  6. <body style=”background-image:url(pattern.gif); background-repeat:repeat”>
  7. <br />
  8.    
  9.  
  10. <?php
  11.  
  12. $host="localhost"; // Hostnom
  13. $username=""; // Mysqlutilisateur
  14. $password=""; // Mysqlmotdepase
  15. $db_name="test"; // Databasenom
  16. $tbl_name="forum_question"; // Tablenom
  17.  
  18. // Connexion au serveur et a la databse.
  19. mysql_connect("$host", "$username", "$password")or die("cannot connect");
  20. mysql_select_db("$db_name")or die("cannot select DB");
  21.  
  22. $sql="SELECT * FROM $tbl_name ORDER BY id DESC";
  23.  
  24. $result=mysql_query($sql);
  25. ?>
  26.  
  27. <table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
  28. <tr>
  29. <td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>
  30. <td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>
  31. <td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>
  32. <td width="13%" align="center" bgcolor="#E6E6E6"><strong>Reponses</strong></td>
  33. <td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Heure</strong></td>
  34. </tr>
  35.  
  36. <?php
  37.  
  38.  
  39.  
  40. while($rows=mysql_fetch_array($result)){
  41. ?>
  42. <tr>
  43. <td bgcolor="#FFFFFF"><?php echo $rows['id']; ?></td>
  44. <td bgcolor="#FFFFFF"><a href="view_topic.php?id=<?php echo $rows['id']; ?>"><?php echo $rows['topic']; ?></a><BR></td>
  45. <td align="center" bgcolor="#FFFFFF"><?php echo $rows['view']; ?></td>
  46. <td align="center" bgcolor="#FFFFFF"><?php echo $rows['reply']; ?></td>
  47. <td align="center" bgcolor="#FFFFFF"><?php echo $rows['datetime']; ?></td>
  48. </tr>
  49.  
  50. <?php
  51. }
  52. mysql_close();
  53. ?>
  54.  
  55. <tr>
  56. <td colspan="5" align="right" bgcolor="#E6E6E6"><a href="create_topic.php"><strong>Creation d'un nouveau Topic</strong> </a></td>
  57. </tr>
  58. </table>
  59. </body>
  60. </html>
Add Comment
Please, Sign In to add comment