Advertisement
freddy0512

slug

Apr 22nd, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1.            
  2. <?php  
  3. $no = $offset;
  4. foreach($data as $row ) {
  5. ?>
  6. <h3 class="judul"><a href="<?php echo base_url() ?><?php echo $lang; ?>/web/artikel/<?= $row->id_artikel ?>"><?php echo $row->judul ?></a></h3>
  7.                 <img src="<?php echo base_url()?>image/artikel/<?php echo $row->gambar?>" class="responsive artikel-image">
  8.                 <p class="text-justify artikel"><?php  echo substr($row->ringkas,0,240) ; ?>
  9.                 <br>
  10.                 <a href="<?php echo base_url() ?><?php echo $lang; ?>/web/artikel/<?= $row->id_artikel ?>/<?= $row->slug ?>">Read More</a>
  11.                 <hr>  
  12. <?php  }  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement