-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.php
More file actions
44 lines (37 loc) · 904 Bytes
/
create.php
File metadata and controls
44 lines (37 loc) · 904 Bytes
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
<?php
include 'connection.php';
if (isset($_POST['create_note'])) {
if (add($_POST) > 0) {
echo "
<script>
alert('data berhasil tambah');
document.location.href = 'index.php';
</script>
";
} else {
echo "
<script>
alert('data gagal');
</script>
";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="create.css">
<title>Form Create</title>
</head>
<body>
<form action="" method="post">
<label for="title">Title:</label><br>
<input type="text" id="title" name="title" required><br><br>
<label for="content">Content:</label><br>
<input type="text" id="content" name="content" required><br><br>
<button type="submit" name="create_note">Create Note</button>
</form>
</body>
</html>