core/api/modules/mc/class.php

17 lines
544 B
PHP
Raw Normal View History

2022-12-11 13:55:49 +05:00
<?php
class main{
var $db; // Здесь объект для работы с MySQL
var $id;
function __construct($smarty, $settings, $db){
$this->db=$db;
$db->free_sql2("ALTER TABLE `content` ADD `reyt` int(10) NULL;");
}
/* ------------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */
}
?>