View Single Post
ישן 03-07-07, 15:13   # 7
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

PHP קוד:
<?php
$str_len 
4;//it could be 500 if u want.
$str "asdfasdf asdf fdsf";
while(
$str[$str_len -1] != ' ')
{
    
$str_len++;
}
echo 
substr($str0$str_len) . "...";
?>

Last edited by בניה; 03-07-07 at 15:16..
  Reply With Quote