
  MySQL

     (MySQL )
  


DROP TABLE IF EXISTS `adm_chat`;
CREATE TABLE IF NOT EXISTS `adm_chat` (
  `id` int(11) NOT NULL auto_increment,
  `id_user` int(11) NOT NULL default '0',
  `time` int(11) NOT NULL,
  `msg` varchar(1024) character set utf8 collate utf8_unicode_ci default NULL,
  PRIMARY KEY  (`id`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;


            adm_panel/index.php
  !

if ($user['level']>1)echo "<a href='../adm_chat/'>- [</a>\n";
include_once "../adm_chat/count.php";
echo "]";


      483145
MRICQ.RU