-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubahPakar.php
119 lines (100 loc) · 3.93 KB
/
ubahPakar.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
<?php
include "function.php";
if (isset($_SESSION['role'])) {
if ($_SESSION['role'] == 1) {
header("location: test.php");
} else if ($_SESSION['role'] == 2) {
header("location: indexPakar.php");
}
} else {
header("location:index.php");
}
$id_user = $_GET["id_user"];
$queryUser = mysqli_query($koneksi, "SELECT * FROM user WHERE id_user = '$id_user'");
$user = mysqli_fetch_assoc($queryUser);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard Admin</title>
<link rel="stylesheet" href="styles.css">
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"/>
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,400,700&display=swap"
rel="stylesheet"/>
</head>
<body >
<div class="kiri">
<section class="logo">
<img src="gambar/logo.png" alt="logo" height="70px" />
</section>
<div class="sidebar-heading">
<h5 class="font-weight-bold text-white text-uppercase teks">Data User</h5>
</div>
<section class="isi">
<a class="nav-link" href="indexAdmin.php">
<span>Data Pasien</span></a>
</section>
<section class="isi">
<a class="nav-link" href="indexPakar.php">
<span>Data Pakar</span></a>
</section>
<div class="sidebar-heading">
<h5 class="font-weight-bold text-white text-uppercase teks">Gejala & Penyakit</h5>
</div>
<section class="isi">
<a class="nav-link" href="indexPenyakit.php">
<span>Data Penyakit</span>
</a>
</section>
<section class="isi">
<a class="nav-link" href="indexGejala.php">
<span>Data Gejala</span>
</a>
</section>
<div class="sidebar-heading">
<h5 class="font-weight-bold text-white text-uppercase teks">Solusi</h5>
</div>
<section class="isi">
<a class="nav-link" href="indexSolusi.php">
<span>Data Solusi</span>
</a>
</section>
<section class="isi">
<a class="nav-link" href="logout.php">
<span>Logout</span>
</a>
</section>
</div>
<div class="kanan">
<div class="container-fluid">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Ubah Data Pasien</h1>
</div>
<!-- Content Row -->
<div class="row">
<form action="function.php?act=ubahPakar&id_user=<?= $user['id_user']; ?>" id="ubah" method="POST">
<div class="form-group">
<label for="nama">Nama Pakar</label>
<input type="text" class="form-control" id="nama" name="nama" value="<?= $user['nama']; ?>"">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" name="email" value="<?= $user['email']; ?>"">
<label for="alamat">Alamat</label>
<input type="text" class="form-control" id="alamat" name="alamat" value="<?= $user['alamat']; ?>"">
<label for="tgl_lahir">Tanggal Lahir</label>
<input type="date" class="form-control" id="tgl_lahir" name="tgl_lahir" value="<?= $user['tgl_lahir']; ?>"">
</div>
<input type="submit" name="ubah_btn" id="ubah" class="btn btn-primary" value="Ubah">
</form>
</div>
</div>
</div>
</body>
</html>