Guest User

Untitled

a guest
Dec 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <h2><?php echo $row['title']; ?></h2>
  2. <?php $desc = explode("###BEGINPOST###",$row['content']); ?>
  3. <p>
  4. <?php if(strlen($desc[1]) > 150)
  5. {
  6. echo substr($desc[1], 0, 149);
  7. }
  8. else
  9. {
  10. echo $desc[1];
  11. }
  12. ?>
  13. </p>
  14.  
  15. <a href="video-tutorial/<?php
  16. $title = str_replace(array(",",".",":",";","!","&","@","£","$","#","%","^","&","*","(",")","[","]"," "),"-",$row['title']);
  17. echo strtolower($title)."-".$row['postid']; ?>" class="action-btn golden">Watch Video</a>
  18. </div>
Add Comment
Please, Sign In to add comment