Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. session_start();
  3. include 'connect.php';
  4. include 'menu.php';
  5. ?>
  6. <html>
  7. <head>
  8. <title>Najnowsze zdjęcia</title>
  9. <link rel="stylesheet" type="text/css" href="css/style.css" />
  10. </head>
  11. <body>
  12.  
  13. <h1>
  14. <?php
  15. $result=mysqli_query($conn, "SELECT * FROM `zdjecia` ORDER BY `zdjecia`.`data` DESC limit 20");
  16. ?>
  17.  
  18. <div id="zdjecie_big">
  19. </h1>
  20. <?php
  21.  
  22. while($row=mysqli_fetch_assoc($result))
  23. {
  24. echo "<a href='foto.php?zdjecie=".$row['id']."'><img class='zdjecia180' src=img/".$row['id_albumu']."/".$row['id']."></a>";
  25. }
  26. ?>
  27.  
  28. </div>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement