-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprognozowanie_import.php
355 lines (280 loc) · 9.74 KB
/
prognozowanie_import.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<?php
session_start();
if (!isset($_SESSION["db_id"])) {
$_SESSION["db_id"] = "prog_".uniqid();
}
$_SESSION['time'] = time();
?>
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aplikacja do optymalizacji prognozowania liczby wypadków drogowych</title>
<style>
body {
margin: 0;
background-color: lightgray;
}
/* File about */
#file_about {
text-decoration: underline;
}
#file_about:hover {
color: orange;
}
#overlay {
display: none;
position: fixed;
top:0;
left: 0;
width:100vw;
height: 100vh;
background-color: rgba(0,0,0, 0.5);
z-index: 1;
}
#file_about_container {
display:none;
position: fixed;
top: 0;
height: 100vh;
left: 50%;
transform: translate(-50%, 0);
background-color: white;
border: 1px solid black;
padding: 20px;
padding-top: 0;
padding-bottom: 0;
overflow-y: scroll;
z-index: 2;
}
#file_about_container h2 {
text-align: center;
}
#close_popup:hover {
text-decoration: underline;
}
#close_popup_2:hover {
text-decoration: underline;
}
.activate_col_forecast:first {
display: none;
}
#data_table {
height: 100vh;
display: inline-block;
vertical-align: middle;
width: 25vw;
min-width: 300px;
border-right: 4px solid black;
border-bottom: 4px solid black;
border-top: 4px solid black;
}
#data_table table {
margin: 0 auto;
}
.years_checkbox_label {
padding-left: 5px;
}
.years_checkbox_label::before {
content: "|";
padding-right: 5px
}
form button {
height:25px;
}
#years_select {
padding: 10px;
}
#years_select div {
display: inline-block;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
color: orange;
}
#main_container {
width: fit-content;
margin: auto;
border: 4px dashed gray;
background-color: rgb(30,30,30);
color: white;
padding: 20px 40px 20px 40px;
}
#submit {
display: none;
}
table {
margin: 0 auto;
border: solid 2px orange;
border-collapse: collapse;
}
table th {
padding: 5px;
border: solid 2px orange;
}
table td {
padding: 5px;
border: solid 2px orange;
}
a {
color: orange;
}
a:hover {
color: white;
}
#file_about_container {
color: black;
}
@media (max-width: 624px) {
h1 {
display: none;
}
#main_container {
width: calc(100vw - 88px);
min-height: 100vh;
margin: 0;
}
}
</style>
</head>
<body>
<h1>Aplikacja do optymalizacji prognozowania liczby wypadków drogowych</h1>
<div id="main_container">
<h2>Zaimportuj dane:</h2>
<p id="file_about">Szczegóły dotyczące formatu</p>
<div id="overlay">
<div id="file_about_container">
<p id="close_popup">Zamknij</p>
<h2>Jak przygotować dane?</h2>
<p>Dane najprościej przygotować w programie kalkulacyjnym, np. Excel, a następnie zapisać je w formacie pliku .CSV.</p>
<p>Format pliku musi być zgodny z .CSV (rozdzielany przecinkami)!</p>
<img src="help images/CSV save 1.jpg" alt="Zapisać dane w kolumnach bez nazw w pustym arkuszu kalkulacyjnym">
<img src="help images/CSV save 2.jpg" alt="Zapisać arkusz w formacie CSV rozdzielony przecinkami">
<p>Następnie po zapisaniu w formacie CSV (rozdzielonym przecinkami), zaleca się sprawdzić, czy plik .CSV zapisał się poprawnie.</p>
<img src="help images/CSV save 3.jpg" alt="Otwieramy plik w notatniku">
<br>
<img src="help images/CSV save 4.jpg" alt="Sprawdzamy zawartość pliku">
<p>Pierwszy wiersz pliku powinien zawierać tytuły kolumn, wartości powinny nie zawierać żadnych znaków specjalnych ani tekstu, a każda komórka w wierszu powinna być odzielona średnikiem od poprzedniej.</p>
<p>Następnie tak przygotowany plik można przesłać.</p>
<p id="close_popup_2">Zamknij</p>
</div>
</div>
<form action="prognozowanie_import.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file" accept=".csv">
<button type="submit" name="Import" id="submit">Prześlij</button>
</form>
<script>
document.getElementById("file_about").addEventListener("click",() => {
document.getElementById("file_about_container").style.display = "block";
document.getElementById("overlay").style.display = "block";
document.getElementById("close_popup_2").addEventListener("click",() => {
document.getElementById("file_about_container").style.display = "none";
document.getElementById("overlay").style.display = "none";
});
});
document.getElementById("close_popup").addEventListener("click",() => {
document.getElementById("file_about_container").style.display = "none";
document.getElementById("overlay").style.display = "none";
});
document.getElementById("file").addEventListener("click",(x) => {
document.getElementById("submit").style.display = "inline-block";
});
</script>
<?php
$conn = mysqli_connect('localhost', 'root', '', 'wypadki');
if (mysqli_errno($conn)) {
die("Database Connection Error");
}
if (isset($_POST['Import'])) {
$filename = $_FILES["file"]["tmp_name"];
if (empty($filename)){
die ("Plik nie może być pusty!");
}
if($_FILES["file"]["size"] > 0){
$file = fopen($filename, "r");
$k = 0;
while (($getData = fgetcsv($file, 10000, ";")) !== FALSE){
$length = count($getData);
for ($i = 0; $i < $length; $i++) {
$csv_rows[$k][$i] = $getData[$i];
}
$k++;
}
fclose($file);
}
// Delete and create the 'dane' table
$sql = "SELECT * FROM information_schema.tables WHERE table_schema = 'wypadki' AND table_name = '{$_SESSION['db_id']}' LIMIT 1";
$result = mysqli_query($conn, $sql);
if (mysqli_fetch_array($result)) {
$sql = "DROP TABLE {$_SESSION['db_id']}";
mysqli_query($conn, $sql);
}
$sql = "CREATE TABLE {$_SESSION['db_id']} (";
for ($i = 0; $i < count($csv_rows[0]); $i++) {
$sql = $sql."`{$csv_rows[0][$i]}` varchar (30), ";
}
$sql = substr_replace($sql ,"", -2);
$sql = $sql.");";
try {
mysqli_query($conn, $sql);
}
catch (Exception $e) {
echo($sql);
die ("Błąd w pliku CSV!".$e);
}
// Import data from CSV to 'dane' table
for ($k = 1; $k < count($csv_rows); $k++) {
$sql = "INSERT INTO {$_SESSION['db_id']} VALUES (";
for ($i = 0; $i < count($csv_rows[$k]); $i++) {
$sql = $sql.strtr(("'{$csv_rows[$k][$i]}'"), array(',' => '.')).", ";
}
$sql = $sql = substr_replace($sql ,"", -2);
$sql = $sql.");";
echo($sql);
try{
mysqli_query($conn, $sql);
}
catch (Exception $e) {
die ("Złe wartości w wierszu {$k}!".$e);
}
}
echo("<script>window.location.href='prognozowanie_import.php';</script>");
}
$sql = "SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_schema = 'wypadki' AND table_name = '{$_SESSION['db_id']}'";
$result = mysqli_query($conn, $sql);
$nr_of_columns = mysqli_fetch_array($result)[0];
if ($nr_of_columns > 0) {
$sql = "SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'wypadki' AND TABLE_NAME = '{$_SESSION['db_id']}'";
$result = mysqli_query($conn, $sql);
echo("<h2>Zaimportowane dane: </h2>");
echo("<table border=1><tr>");
while ($row = mysqli_fetch_array($result)) {
echo("<th>{$row[0]}</th>");
}
echo("</tr>");
$sql = "SELECT * FROM {$_SESSION['db_id']}";
$result = mysqli_query($conn, $sql);
while ($row = mysqli_fetch_array($result)) {
echo("<tr>");
for ($i = 0; $i < $nr_of_columns; $i++) {
echo("<td>{$row[$i]}</td>");
}
echo("</tr>");
}
echo("</table>");
}
else {
die();
}
mysqli_close($conn);
?>
<br>
<a href="prognozowanie_select.php">Dalej</a>
</div>
</body>
</html>