1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-15 15:04:08 +00:00
Mowie/apps/sidebar/install.php

18 lines
462 B
PHP

<?php
if(isset($_POST['submit']))
{
if($db->query('CREATE TABLE `' . $_POST['db_prefix'] . 'sidebar_sidebar` (
`active` tinyint(1) NOT NULL,
`content` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `' . $_POST['db_prefix'] . 'sidebar_sidebar` (`active`, `content`) VALUES
(0, \'\');'))
{
echo msg('succes', 'Sidebar was installed successfully.');
}
else
{
echo msg('fail', 'An error occured while installing Sidebar.');
exit;
}
}