Advertisement
Guest User

Untitled

a guest
May 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. if ($num != 0 && !empty($search_query)) {
  2.         while ($row = mysqli_fetch_array($query)) { ?>
  3.         <div class="sidebar2">
  4.             <h1><a href="<?php echo base_url . '/metodrecommendations/teacher?articles&id='.$row['id']; ?>"><?php echo $row['title']."<br/>"; ?></a></h1>
  5.             <p><?php $text = $row['text'];
  6.             $counttext = 1000;
  7.             $text = substr($text, 0, $counttext);
  8.             $text = rtrim($text);
  9.             $text = substr($text, 0, strrpos($text, ' '));
  10.             if (mb_strlen($row['text']) > $counttext) {
  11.                 echo $text;
  12.                 echo "<a href=".base_url . 'news?articles&id='.$row['id']."> Читати далі . . .</a>";
  13.             } else {
  14.                 echo $row['text'];
  15.             }   ?></p>  <br/>      
  16.             <p>Дата публікації: <?php echo $row['date'];?> / <?php echo $row['time']; ?>
  17.                 <span class="author">Автор: <?php echo $row['author']."<br/>"; ?></span>
  18.             </p><br/>
  19.  
  20.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement