וואלה צודק...אבל אני לא מבין מה זה בדיוק אומר...כי תכלס ככה:
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);
?>