Skip to main content

tooolong lagi pengen banget belajar nih

2 replies [Last post]
does not have a status.
dharmadhiester's picture
User offline. Last seen 5 weeks 6 days ago. Offline
Joined: 10/08/2010

gimana yah cara bikin readmore?

saya bikin radmore tapi malah keluar semua data nya ngak data yang spesifik malah tampil all data

makasih smuanya hellllp mi

PHP fro scratch :)
fanjava's picture
User offline. Last seen 1 day 45 min ago. Offline
Joined: 10/24/2010
Fungsi Explode

Pake fungsi explode aja. Tinggal implementasi di CI

<?php
   $artikel = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining 
[more]
essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";
 
$cuplik = explode("[more]", $artikel);
 
//untuk menampilkan cuplik
echo $cuplik[0];
 
//untuk nampilin full artikel
echo $cuplik[0][1];
?>

Pasang aja di CI.
Semoga membantu :)

.:: fandesign ::.
visit my blog : http://fanjavaakhmad.wordpress.com/

Seminggu kehilangan kontak dengan internet....
cahndeso's picture
User offline. Last seen 4 days 32 min ago. Offline
Joined: 10/17/2010
pakai fungsi word_limiter

pakai fungsi word_limiter yang ada di text helper. jika mau menggunakannya, jangan lupa untuk $this->load->helper("text"); atau masukkan di autoload.php

contoh:

$string = "gimana yah cara bikin readmore? saya bikin radmore tapi malah keluar semua data nya ngak data yang spesifik malah tampil all data makasih smuanya hellllp mi.";
 
$string = word_limiter($string, 5);
 
//akan menghasilkan: gimana yah cara bikin readmore?… 
//nah tinggal echo $string..

terus baru bikin anchor (link-nya) untuk menuju ke tampilan penuh/seluruh tulisan...

Semoga membantu...

Happy Coding

Cahndeso (dalam posisi limited word...)

Premium Drupal Themes by Adaptivethemes