Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php
  2. include 'connect.php';
  3. $title = null;
  4. $text = null;
  5. $select = mysqli_query($con, "SELECT * FROM posts ORDER BY idp DESC");
  6. // $conta = mysqli_num_rows($select);
  7. if (mysqli_num_rows($select) <= 0) {
  8. echo "<script>alert('Nao ha posts')</script>";
  9. }else{
  10. while ($in = mysqli_fetch_array($select)) {
  11. $title = $in['titulo'];
  12. $text = $in['texto'];
  13. $id = $in['idp'];
  14. }
  15. }
  16. ?>
  17. <div class="wrap-p">
  18. <div id="title"><?php echo $title;?></div>
  19. <div id="texto"><?php echo $text;?></div>
  20. <div id="texto"><?php echo "$id";?></div>
  21. </div>
  22. </div><br><br>
  23.  
  24. <div class="wrap-p">
  25. <div id="title"><?php echo $title;?></div>
  26. <div id="texto"><?php echo $text;?></div>
  27. <div id="texto"><?php echo "$id";?></div>
  28. </div>
  29. </div><br><br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement