-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.php
60 lines (57 loc) · 2.15 KB
/
update.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
<?php
include './connect.php';
$id = $_GET ['update_id'];
$sql = "Select * from `crud` where id=$id";
$result = mysqli_query($con, $sql);
$row = mysqli_fetch_row($result);
// $name = $row['name'];
// $email = $row['email'];
// $mobile = $row['mobile'];
// $password = $row['password'];
if (isset($_POST['submit'])) {
$name = $_POST['name'];
$email = $_POST['email'];
$mobile = $_POST['mobile'];
$password = $_POST['password'];
$sql = "update `crud` set id='$id', name='$name', email='$email', mobile='$mobile', password='$password' where id=$id";
$result = mysqli_query($con, $sql);
if ($result) {
header('location:display.php');
}
else {
die (mysqli_error($con));
}
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP-CRUD</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container my-5">
<form method="post">
<div class="mb-3">
<label>Name</label>
<input type="text" class="form-control" name="name" placeholder="Your name" required autocomplete="off">
</div>
<div class="mb-3">
<label>Email</label>
<input type="email" class="form-control" name="email" placeholder="Your email" required autocomplete="off">
</div>
<div class="mb-3">
<label>Mobile</label>
<input type="text" class="form-control" name="mobile" placeholder="Your mobile number" required autocomplete="off">
</div>
<div class="mb-3">
<label>Password</label>
<input type="password" class="form-control" name="password" placeholder="Your password" required autocomplete="off">
</div>
<button type="submit" class="btn btn-primary" name="submit">Update</button>
</form>
</div>
</body>
</html>