'.strftime('%d/%m/%y %T',$row['Microtime']).': '.$row['Notification'].''; } echo(json_encode($buf)); } elseif (array_key_exists('act',$_GET) && $_GET['act']=='loadnew' && array_key_exists('lmt',$_GET) && preg_match('/^[0-9]+(\.[0-9]+)?$/',$_GET['lmt'])===1) { $_GET['lmt']+=0; $newlmt=$_GET['lmt']; $newunread=false; require('include/myconn.php'); $res=mysqli_query($link,'SELECT * FROM Notifications WHERE Microtime > '.$_GET['lmt'].' ORDER BY Microtime DESC') or muoribene(mysqli_error($link),true); mysqli_close($link); $buf=array(); while ($row=mysqli_fetch_assoc($res)) { if ($row['Seen']==0) { $notifclass='notifunseen'; $newunread=true; } else { $notifclass='notifseen'; } $buf[]='
'.strftime('%d/%m/%y %T',$row['Microtime']).': '.$row['Notification'].'
'; if ($row['Microtime']+0>$newlmt) $newlmt=$row['Microtime']; } $buf=array('newlmt'=>$newlmt,'newunread'=>$newunread,'buf'=>$buf); echo(json_encode($buf)); } exit(0); ?>