1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-03 09:29:38 +00:00
Mowie/apps/sidebar/install-dev.php
2017-09-27 20:47:43 +02:00

18 lines
463 B
PHP
Executable File

<?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('success', 'Sidebar was installed successfully.');
}
else
{
echo msg('fail', 'An error occured while installing Sidebar.');
exit;
}
}