1
0
mirror of https://github.com/Mowie/Mowie synced 2024-05-29 07:16:43 +00:00
Mowie/apps/meta/install-dev.php
2017-04-29 19:25:18 +02:00

16 lines
345 B
PHP
Executable File

<?php
if(isset($_POST['submit']))
{
if($db->query('CREATE TABLE `' . $_POST['db_prefix'] . 'meta_meta` (
`name` text NOT NULL,
`content` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;'))
{
echo msg('succes', 'Meta was installed successfully.');
}
else
{
echo msg('fail', 'An error occured while installing Meta.');
exit;
}
}