Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <div class="slidershow middle">
  10. <?php
  11. $i=1;
  12. include_once 'database.php';
  13. $con = new DB_con();
  14. $result=$con->get_photos_by_id($id);
  15. $n=0;
  16. while($row=mysqli_fetch_array($result)){
  17. if($i==1){
  18. ?>
  19. <input type="radio" name="r" id="r1" checked>
  20. <?php
  21. }else{ ?>
  22. <input type="radio" name="r" id="r<?php r$i ?>" >
  23. <?php
  24. } ?>
  25. <div class="slide">
  26. <?php echo '<img src="'. $row['image'].'" height="400" width="400"/>'; ?>
  27. </div>
  28.  
  29. <div class="navigation">
  30. <label for="r1" class="bar"></label>
  31.  
  32.  
  33. ?>
  34. </div>
  35. </div>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement