Размер файла: 983B
<?
error_reporting(0);
require_once './config.php';
mysql_query("DROP TABLE `bashorg_quotes`,`ip`,`tmp_text`");
mysql_query("CREATE TABLE `bashorg_quotes` (
`id` int(11) NOT NULL auto_increment,
`quote` text NOT NULL,
`plus` int(11) NOT NULL,
`minus` int(11) NOT NULL,
PRIMARY KEY (`id`));") or die('ERROR:<br/>'.mysql_error());
mysql_query("CREATE TABLE `ip` (
`id` int(11) NOT NULL auto_increment,
`uid` int(11) NOT NULL,
`ip` varchar(15) NOT NULL default '',
PRIMARY KEY (`id`));") or die('ERROR:<br/>'.mysql_error());
mysql_query("CREATE TABLE `tmp_text` (
`id` INT(11) NOT NULL auto_increment,
`text` TEXT NOT NULL,
PRIMARY KEY (`id`));") or die('ERROR:<br/>'.mysql_error());
echo 'Таблицы успешно залиты!<br/>';
echo 'Для безопасности скрипта,удалите файл <b>setup.php</b><br/>';
echo '<b>»<a href="./index.php">На главную</a></b>';
?>