View Single Post
ישן 22-09-06, 15:41   # 5
-VladK-
הוסטסניון
 
-VladK-'s Avatar
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
גיל: 34
הודעות: 2,182

-VladK- לא מחובר  

וואלה צודק...אבל אני לא מבין מה זה בדיוק אומר...כי תכלס ככה:
PHP קוד:
<?
function str_tpl($dir,$file,$what,$whith){
    
$tpl file($dir."/".$file.".tpl");
    if(
$what != NULL AND $whith != NULL){
        
$tpl str_replace ($what$whith$tpl);
    }
    foreach (
$tpl as $cont){
        
$value .= $cont;
    }
    return 
$value;
}

echo 
str_tpl("style","header","<*CSS_NUM*>",1);
$block str_tpl("style","block","<*BLOCK_TITLE*>","כותרת");
echo 
str_tpl("style","index_body","<*BLOCKS*>",$block);
echo 
str_tpl("style","footer",NULL,NULL);
?>