Просмотр файла index.php

Размер файла: 1.23Kb
<?  // mysiera.ru
require_once "../includes/start.php";
require_once "../includes/functions.php";
require_once "../includes/header.php";
include_once "../themes/".$config['themes']."/index.php";
include "config.php";




$day=$date=date("d");   // день
$month=$date=date("m"); // месяц
$year=$date=date("Y");  // год

$lines = file($datafile);
$itogo=count($lines); $i=0;

do {$dt = explode("|",$lines[$i]);

$todaydate=date("d.m.Y");
$tekdt=mktime();

$newdate=mktime(0,0,0,$dt[1],$dt[0],$year);
$dayx=date("d.m.Y",$newdate);  // конверируем кол-во дней до праздника в человеческий формат
$deystodate=round(($newdate-$tekdt)/86400); // через сколько дней наступит событие

if (($dt[0]==$day) and ($dt[1]==$month)) {print"Седне праздник: <strong>$dt[2]</strong><BR>";}
if ($klvmsg>0) {
 if (($deystodate>0) and ($deystodate<$klvdays)) {
if (!isset($m1)) {print"В ближайщее время ожидаются праздники:<BR>"; $m1=1;}
$klvmsg--; print"через <B>$deystodate</B> дней <B>$dayx</B> $dt[2]<BR>";} }

$i++;
} while($i<$itogo);

include_once "../themes/".$config['themes']."/foot.php";
?>