View file ajax notification/Readme.txt

File size: 776B
Установка:
Распаковать в корень

Выполнить запрос
CREATE TABLE IF NOT EXISTS `frends_aut` (
  `id_user` int(11) NOT NULL,
  `id_frend` int(11) NOT NULL,
  `time` int(11) NOT NULL
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;


В head.php вашей темы прописать прописать код:

if (isset($user) && $webbrowser == true)
{
	?><script>  
	function show()  
	{  
		$.ajax({  
			url: "/ajax/frend.ajax.php",  
			cache: false,  
			success: function(html){  
				$("#frends").html(html);  
			}  
		});  
	}  
  
	$(document).ready(function(){  
		show();  
		setInterval('show()',10000);  
	});  
</script><div style="position:fixed; left: 10px; bottom:15px;" id="frends"></div><?
}