Function | ظ‚طµ ظ†طµ ط§ظ„ط¯ظٹ ظٹط¨ط*ط« ط¹ظ†ظ‡ ط§ظ„ط¬ظ…ظٹط¹



رمز PHP:
<code style="white-space:nowrap"> <code> //function to truncate text and show read more link
function truncate($mytext,$link,$var,$id) {
//Number of characters to show
$chars = 900;
$mytext = substr($mytext,0,$chars);
$mytext = substr($mytext,0,strrpos($mytext,' '));
$mytext = $mytext."<br>&#91;<a href='$link?$var=$id'><font color='#CC3333' size='1'>المزيد...</font></a>&#93;";
return
$mytext;
}



</code> </code>