-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetupdatei.php
66 lines (65 loc) · 2.74 KB
/
setupdatei.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Installation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
</head>
<body>
<?php
function setup(){
if(empty($_POST['dbhost']) OR empty($_POST['dbpw']) OR empty($_POST['dbname']) OR empty($_POST['dbuser']) OR empty($_POST['pw_link']) OR empty($_POST['name_tabelle'])){
echo "<div class='error'>Bitte fülle alle Felder aus</div>";
echo "<a href='javascript:history.back()'>Zurück</a>";
}else{
$zeile='<?php $pwlink="'.$_POST['pw_link'].'"; $tabelle="'.$_POST['name_tabelle'].'";try{$mysql = new PDO("mysql:host='.$_POST['dbhost'].';dbname='.$_POST['dbname'].'", "'.$_POST['dbuser'].'", "'.$_POST['dbpw'].'");$mysql->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );}catch (PDOException $e){echo "SQL Error: ".$e->getMessage();}?>';
file_put_contents("mysql.php", $zeile);
include('mysql.php');
try{
$query="CREATE TABLE `$tabelle`(
`id` int(20) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`user` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`pass` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci";
$mysql->exec($query);
echo "<div class='succes'>Tabelle $tabelle wurde erstellt</div>";
$eins=true;
} catch(PDOException $e) {
echo $e->getMessage();
$eins=false;
echo "<div class='error'>Fehler beim erstellen der Tabelle $tabelle </div>";
}
$filename2 = 'mysql.php';
if (file_exists($filename2) AND $eins==true){
if(isset($_POST['kill'])){
//unlink('setupdatein.php');
//unlink('install.php');
echo "<div class='succes'>Setup Datein wurden gelöscht</div>";
}
if(isset($_POST['kill_bild'])){
//unlink('accound.png');
//unlink('setup.png');
//unlink('anmeldung.png');
echo "<div class='succes'>Setup Bioder Datein wurden gelöscht</div>";
}
}else{
if(isset($_POST['kill'])){
echo "<div class='error'>Setupdatein wurde nicht gelöscht</div>";
}
if(isset($_POST['kill_bild'])){
echo "<div class='error'>Bilder aus Setup wurde nicht gelöscht</div>";
}
}
echo "<a href='register.php'>User erstellen</a><br><a href='index.php'>Zum einloggen</a>";
}
}
if(isset($_POST['dbpw'])){
setup();
}
?>
</body>
</html>