<?
require("functionChat.ssp");
$r = GetRandom();
openDB();
$now = time();
$mailtime = $now - 5*24*3600;
$sqlSel="select ind,nick,sent from users where sent>'500' and mailtime>'$mailtime' order by sent desc limit 500";
//$sqlSel="select ind,nick,sent from users where nick='Nanahara'";
// 0 1
$result=mysql_query($sqlSel) or die(mysql_error());
$i= 0;
while ($row[$i]=mysql_fetch_row($result)) {$i++;}
$CountUsers=mysql_num_rows($result);
$messtype = $UnReadType;
$mymess = "Футбольный ТОТАЛИЗАТОР! На сайтах http://dizen.nm.ru и http://nanaxapa.mywap.o2.co.uk организован футбольный тотализатор посвященный Чемпионату Европы 2004 ! Вы можете в нём выиграть даже играя бесплатно! Главным подарком для нас станет ВАШЕ УЧАСТИЕ! Читайте правила и присоединяйтесь!";
for ($i=0; $i < $CountUsers; $i++)
{
$toid = $row[$i][0];
$tonick = $row[$i][1];
$sent = $row[$i][2];
echo "$i $tonick = $sent<br/>";
$sqlnext ="insert into letters (messtime,fromid,toid,fromnick,tonick,messtype,messtext) values ('$now','0','$toid','Nanahara','$tonick', '$messtype','$mymess')";
mysql_query($sqlnext) or die(mysql_error());
}
echo "OK";
//Nanahara
mysql_close();
?>