Kodun tamamı böyle
<?
$filename = "%%-".md5($_SERVER['REQUEST_URI'])."-%%.html";
$cachefile = "cache/".$filename;
$cachetime = 20 * 60 * 60; // Cache Süresi
if (file_exists($cachefile))
{
if(time() - $cachetime < filemtime($cachefile))
{
readfile($cachefile);
exit;
}
else
{
unlink($cachefile);
}
}
ob_start();
define('_AUTH_PAGE',1);
include('inc/function.php');
include_once('config.php');
include_once('common.php');
global $conf_url;
@sql_baglan();
if($_GET['sayfa'] == 'izle') {
$veri = @video_bilgi();
$title = @txt_edit($veri['baslik'],150);
$meta = @txt_edit($veri['bilgi'],100);
$meta = @txt_edit($veri['title'],100);
$meta = $title.' video, Youtube '.$title.' video, '.$title.' izlesene';
burada video yazan yere <?php echo LANG_HEADER_TITLE; ?> bu kodu nasıl eklerim