Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.         $string=($post['content']);
  3.         if(strlen($string) >255) {
  4.  
  5.         $stringCut = substr($string, 0, 255 );
  6.           $trimmedString = trim($stringCut, " ");
  7.         echo ($trimmedString);
  8.         ?>....<a href="<?=APP_ROOT?>/home/view/<?=htmlspecialchars($post['post_id'])?>">Покажи цялата новина</a>
  9.         <?php
  10.         } else {
  11.         ?>
  12.             <p><?=htmlentities($post['content'])?></p>
  13.         <?php  } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement