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

בניה לא מחובר  

ב"ה


תנסה:
PHP קוד:
<?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","<div>".highlight_string($matchs[$i][1])."</div>",$content,1);
    }
?>