Advertisement
fapyw

Untitled

Feb 11th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Collage</title>
  5.     <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
  6.  
  7. </head>
  8. <body>
  9.  
  10.  
  11. <?php
  12.     $servername = "localhost";
  13.     $username = "root";
  14.     $password = "Silpakorn60";
  15.     $dbname = "db13580248";
  16.  
  17.     $conn = new mysqli($servername, $username, $password, $dbname);
  18.  
  19.     $sql ="SELECT * FROM student_tbl";
  20.     $sql ="SELECT * FROM vote_tbl";
  21.     $result = $conn->query($sql);
  22.  
  23.     $conn->close();
  24. ?>
  25.  
  26.  
  27.     <div class="container">
  28.         <div class="page-header"><h1>COLLAGE</h1> <small>By Student in Silpakorn University</small></div>
  29.         <div class="row">
  30.        
  31.     <?php
  32.         while($row = $result->fetch_assoc()){
  33.  
  34.     ?>
  35.             <div class="col-md-3">
  36.                 <div class="thumbnail">
  37.                     <img src="collage-crop/<?php echo $row["id_group"]?>.jpg" class="group list-group-image img-rounded"> <!-- echo $row["id_group"] -->
  38.                
  39.                     <div class="caption">
  40.                         <h3 class="group list-item-heading"><?php echo $row["id_group"]?></h3>
  41.                         <p class="group list-item-text"><?php echo $row["topics"]?></p>
  42.                         <div class="row">
  43.                             <div class="col-sm-4">
  44.                                 <p><strong> <?php echo $row["likeA"]?> VOTE</strong></p>
  45.                             </div>
  46.                             <div class="col-sm-8">
  47.                                 <div class="text-right">
  48.                                     <a class="btn btn-info" href="detail.php?groupA=<?php echo $row["id_group"]?>" role="button">Detail</a>
  49.                                 </div>
  50.                             </div>
  51.                         </div>
  52.                     </div>
  53.                 </div>
  54.             </div>
  55.  
  56.     <?php
  57.     }
  58.     ?>
  59.  
  60.     </div>
  61.     </div>
  62.  
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement