Merhabalar,
TPL Dosyaları şöyle;
header.tpl
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{$title}</title>
{$meta}
</head>index.tpl
{include file="header.tpl"}
<body>
{$title}
{include file="footer.tpl"}footer.tpl
</body>
</html>
index.php
<?php
require_once('libs/Smarty.class.php');
require_once('mysql.php');
$smarty = new Smarty;
$smarty->template_dir = './template/';
$smarty->compile_dir = './compile/';
$smarty->cache_dir = './cache/';
$genel = $db->get_row("SELECT * FROM genel",ARRAY_A);
$smarty->assign('siteurl', 'http://www.kocasozluk.com/');
$smarty->assign('title', $genel['site_baslik']);
$smarty->assign('meta', $genel['meta']);
$smarty->display('index.tpl');
?>Saygılarımla;
Samet ARAS.