-
Notifications
You must be signed in to change notification settings - Fork 0
/
database_create.php
78 lines (67 loc) · 2.99 KB
/
database_create.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
67
68
69
70
71
72
73
74
75
76
77
78
<?php
define('ACCESS', true);
define('PHPMYADMIN', true);
include_once '.init.php';
$title = 'Tạo database';
include_once 'database_connect.php';
include_once 'header.php';
if (IS_CONNECT && IS_DATABASE_ROOT) {
$name = null;
$collection = null;
$notice = null;
if (isset($_POST['submit'])) {
$name = addslashes($_POST['name']);
$collection = addslashes($_POST['collection']);
$notice = '<div class="notice_failure">';
if (empty($name))
$notice .= 'Chưa nhập đầy đủ thông tin';
else if (isDatabaseExists($name, null, true))
$notice .= 'Tên database đã tồn tại';
else if (
$collection == MYSQL_COLLECTION_NONE
&& !mysqli_query($MySQLi, 'CREATE DATABASE `' . $name . '`')
) {
$notice .= 'Tạo database thất bại, có thể tên database đã tồn tại';
} else if ($collection != MYSQL_COLLECTION_NONE && !preg_match('#^(.+?)' . MYSQL_COLLECTION_SPLIT . '(.+?)$#i', $collection, $matches))
$notice .= 'Mã hóa - Đối chiếu không hợp lệ';
else if (
$collection != MYSQL_COLLECTION_NONE
&& !mysqli_query($MySQLi, 'CREATE DATABASE `' . $name . '` CHARACTER SET ' . $matches[1] . ' COLLATE ' . $matches[2])
) {
$notice .= 'Tạo database thất bại: ' . mysqli_error($MySQLi);
} else
goURL('database_lists.php');
$notice .= '</div>';
}
echo '<div class="title">' . $title . '</div>';
echo $notice;
echo '<div class="list">
<form action="database_create.php" method="post">
<span class="bull">•</span>Tên database:<br/>
<input type="text" name="name" value="' . $name . '" /><br/>
<span class="bull">•</span>Mã hóa - Đối chiếu:<br/>
<select name="collection">' . printCollection(stripslashes((string) $collection)) . '</select><br/>
<input type="submit" name="submit" value="Tạo"/>
</form>
</div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/database.png"/> <a href="database_lists.php">Danh sách database</a></li>
</ul>';
} else if (IS_CONNECT && !IS_DATABASE_ROOT) {
echo '<div class="title">' . $title . '</div>
<div class="list">Bạn đang kết nối tới một database không thể vào danh sách database</div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/disconnect.png"/> <a href="database_disconnect.php">Ngắt kết nối database</a></li>
</ul>';
} else {
echo '<div class="title">' . $title . '</div>
<div class="list">Lỗi cấu hình hoặc không kết nối được</div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/disconnect.png"/> <a href="database_disconnect.php">Ngắt kết nối database</a></li>
</ul>';
}
include_once 'footer.php';
include_once 'database_close.php';