Advertisement
Guest User

posts

a guest
Oct 6th, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. <div id="coisaEstranha" style="margin-top:2%;">
  2. <?php
  3.  
  4. $Busca = $pdo->query("SELECT * FROM posts ORDER By id DESC");
  5. $Busca->execute();
  6. // Aqui fazemos a contagem para verificar se há registro na tabela de usuários !!!
  7. if($Busca->rowCount() > 1){
  8. // Caso retorne "1" significa que há...então continuamos !!!
  9. //Abaixo executamos um laço de repetição para buscarmos informações referentes a este login !!!
  10. while($fetch = $Busca->fetch(PDO::FETCH_ASSOC)){
  11. $autor = $fetch['autor'];
  12. $content = $fetch['content'];
  13. $data = $fetch['data'];
  14. $ava = $fetch['autor_avatar'];
  15. $id_post = $fetch['id'];
  16. ?>
  17.  
  18. <div id="Feed" style="padding: 2%;margin-top: 3%;background:white;"><!-- div que engloba toda postagem !!! -->
  19. <i class="but white fa fa-chevron-down fr" style="font-size:12px;color:#A4A4A4;"></i>
  20. <div id="head_post" style="position: relative;width:70%;height:40px;">
  21. <div id="at_post_avatar" style="width: 13%;height:100%;display:inline-block;">
  22. <img src="<?php echo $ava; ?>" width="100%" height="100%">
  23. </div>
  24.  
  25.  
  26. <div id="atr" style="margin-left:50px;margin-top:-40px;position: relative;"><b><a href="user.php?id=<?php echo $autor; ?>"><?php echo $autor; ?></a></b></div>
  27. <div id="atx" style="margin-left:50px;position: relative;font-size:12px;color:#A4A4A4;"><b><?php echo ShowDate($data); ?></b></div>
  28. </div>
  29.  
  30. <div id="xiao" style="min-height: 80px;margin-bottom: 2%;margin-top:2%;"><?php echo makeClickableLinks($content); ?></div>
  31. <i class="but white fa fa-thumbs-o-up" style="font-size:12px;"> 635</i>
  32. <i class="but white fa fa-comments-o" style="font-size:12px;"> 27</i>
  33. <i class="but green fa fa-retweet" style="font-size:12px;"> 13</i>
  34. <i class="but fa fa-bookmark fr" style="font-size:12px;background:#3E3E3E;color:white;"> 51</i>
  35. <input id="id_post" type="hidden" value="<?php echo $id_post;?>">
  36. </div>
  37.  
  38. <?php
  39. }}
  40. ?>
  41.  
  42. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement