Файл: in4at/bchat.php
Строк: 29
<?php
##################################################################################################
## Script name : In4at ##
## Version : Final ##
## Made by : XPYCT(Сергей Мищенко) ##
## E-mail : bce-ok@bk.ru ##
## ICQ : 447-50-50-62 ##
## Site : http://vkontakte.ru/id31604521 ##
## Внимание! Скрипт распространяется бесплатно! Модификация W4at by XPYCT ##
##################################################################################################
Error_Reporting(0);
$bchat = time() + 3600;
mysql_query("Update optim set bchat='".$bchat."' WHERE klu4 = '1'");
$d=date("d-m-");
$y=date("Y");
$select = mysql_query("Select id,user,birth,sex from users where birth LIKE '%$d%'");
if (mysql_affected_rows()>1) $imn='именинников';else $imn='именинника';
if (mysql_affected_rows()!=0){
$syst = mysql_fetch_array(mysql_query("Select user from users where id='1' LIMIT 1;"));
while ($inf = mysql_fetch_array($select)){
$im=$inf['user'];
$usidm=$inf['id'];
$pol=$inf['sex'];
$today=date ("H:i");
$rnd = rand(0,99999999);
$birth=$inf['birth'];
$d1=substr($birth,0,2);
$m1=substr($birth,4,2);
$y1=substr($birth,6,4);
$age=$y-$y1;
if ((($age%10==2) or ($age%10==3) or ($age%10==4)) and (($age > 20) or ($age < 10))) {$years = 'года';}
elseif ($age%10==1 and $age !==11) {$years = 'год';}
else {$years = 'лет';}
if ($pol == 1) $uspol = 'ему';
else $uspol = 'ей';
$pozd.='<u>'.$im.'</u> ('.$uspol.' '.$age.' '.$years.'), ';
}
$mes = '<br/>Сегодня день рождения у '.$pozd.' поздравляем '.$imn.' и желаем всего самого лучшего!';
for ($numf = 0;$numf <= 9;$numf++){
$ranecf = 'room'.$numf;
$time = time();
mysql_query("Insert into $ranecf set klu4= '".$rnd."', time='".$today."', who='".$syst[0]."', message='".$mes."', id='".$time."', towhom='', hid='0', usid='1'");
mysql_query("ANALYZE TABLE $ranecf");
}
}
?>