www.gusucode.com > weenCompany闻名企业网站系统 4.0.0 繁体中英文 UTF8源码程序 > modules/m18_hitcounter/install.php

    <?php
// +---------------------------------------------+
// |     Copyright 2003 - 2005 weenCompany       |
// |     http://www.weentech.com                 |
// |     This file may not be redistributed.     |
// +---------------------------------------------+

if(!defined('TABLE_PREFIX'))
{
  define('TABLE_PREFIX', "");
}


if(!defined('IN_WEENCOMPANY'))
  die('File not found!');


$uniqueid     = 18;
$modulename   = '網站計數器';
$version      = '2.0';
$modulepath   = 'm18_hitcounter/hitcounter.php';
$settingspath = 'm18_hitcounter/m18_settings.php';
$authorname   = 'weencompany';
$authorlink   = 1;
$modulesettings = '17';


if($installtype == 'install')
{

$DB->query("CREATE TABLE " . TABLE_PREFIX . "m18_hitcounter (
  hits int(11) NOT NULL default '0',
  start int(11) NOT NULL default '0',
  style int(11) NOT NULL default '1',
  digits int(11) NOT NULL default '1',
  cookietimeout int(11) NOT NULL default '3600',
  message varchar(255) NOT NULL default ''
) TYPE=MyISAM;");

$DB->query("INSERT INTO " . TABLE_PREFIX . "m18_hitcounter VALUES (0,0,1,8,3600,'網站點擊統計: ')");
}

if($installtype == 'upgrade')
{

}

if($installtype == 'uninstall')
{
$DB->query("DROP TABLE " . TABLE_PREFIX . "m18_hitcounter");
}

?>