-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
64 lines (55 loc) · 1.78 KB
/
index.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
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
?>
<html>
<head>
<title>Тестовая БД</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
</head>
<body>
<script src="assets/jquery-3.2.1.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<div class="forma">
<form action="Users_handler.php" method="post">
Имя
<input name='first_name'>
Фамилия
<input name='last_name'>
<input name='type' value="add" hidden>
<!-- <input type="submit" /> -->
<br><br>
<button class="btn btn-primary" type="submit">Отправить</button>
<button class="btn" type="reset">Сбросить</button>
</form>
<hr>
<form action="Users_handler.php" method="post">
Имя пользователя для удаления
<input name='first_name'>
<input name='type' value="delete" hidden>
<br><br>
<button class="btn btn-primary" type="submit">Отправить</button>
<button class="btn" type="reset">Сбросить</button>
</form>
<hr>
<form action="Users_handler.php" method="post">
<h4>Редактирование фамилии пользователя по его имени</h4>
<p>Имя</p>
<input name='first_name'>
<input name='type' value="edit" hidden>
<p>Новое имя</p>
<input name='last_name'>
<br><br>
<button class="btn btn-primary" type="submit">Отправить</button>
<button class="btn" type="reset">Сбросить</button>
</form>
<br><br>
<form action="Users_handler.php" method="post">
<input name='type' value="show" hidden>
<button class="btn btn-large btn-primary" type="submit">Показать всех пользователей</button>
</form>
</div>
</body>
</html>