Advertisement
nguyen47

Posts.php

Sep 2nd, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.83 KB | None | 0 0
  1. <!-- ĐoαΊ‘n code của trang post.php --> 
  2.  
  3. <?php
  4.                 $idTL = $_GET["idTL"];
  5.                 echo $idTL;
  6.                 settype($idTL, "int");
  7.                 $posts = posts($idTL);
  8.                 while ($row_posts = mysql_fetch_array($posts)) {                   
  9.              ?>
  10.                 <div class="col-md-6 blog-grid">
  11.                     <div class="blog-grid-left1">
  12.                         <a href="singlepage.html"><img src="images/t1.jpg" alt=" " class="img-responsive"></a>
  13.                     </div>
  14.                     <div class="blog-grid-right1">
  15.                         <a href="singlepage.html">sint occaecat cupidatat</a>
  16.                         <h4>28 July 2016</h4>
  17.                         <p>Duis aute irure dolor in reprehenderit in voluptate velit esse
  18.                             cillum dolore eu fugiat nulla pariatur.</p>
  19.                     </div>
  20.                     <div class="clearfix"> </div>
  21.                     <div class="more m1">
  22.                         <a class="btn effect6" href="singlepage.html">Learn More</a>
  23.                     </div>
  24.                 </div>
  25.  
  26.             <?php
  27.                 }
  28.              ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement