View Single Post
ישן 29-04-06, 22:21   # 2
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

ב"ה

תנסה:
PHP קוד:
preg_match_all("#\[mycode\](.+?)\[/mycode\]#is",$content,$matchs,PREG_SET_ORDER);
for(
$i=0;$i<=count($matchs);$i++)
    {
    
$content=preg_replace("#\[mycode\](.+?)\[/mycode\]#is",highlight_string($matchs[$i][1]),$content,1);
    }