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

23 lines
631 B
PHP
Executable File

<?php
if (isset($_POST['submit']))
{
/*$dbtables = "CREATE TABLE IF NOT EXISTS `".$MCONF['db_prefix']."sidebar` (
`aktiv` text NOT NULL,
`inhalt_typ` text NOT NULL,
`inhalt` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `".$MCONF['db_prefix']."sidebar` (`aktiv`, `inhalt_typ`, `inhalt`) VALUES
('nein', 'text', '<p>Hier erscheint der Inhalt der Sidebar</p>');";
$dbtables = $DBH->prepare($dbtables);
if($dbtables->execute())
{
echo msg('succes', 'Das Sidebarmodul wurde erfolgreich eingerichtet.<br/>');
}
else
{
echo msg('fail', 'Fehler beim Einrichten des Sidebarmoduls.');
exit;
}*/
}
?>