-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathupdate_gym.php
49 lines (31 loc) · 1.49 KB
/
update_gym.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
<?php
require('db.php');
if (isset($_REQUEST['gym'])) {
$gym_id = mysqli_real_escape_string($conn, $_REQUEST['id']);
$name = mysqli_real_escape_string($conn, $_REQUEST['name']);
$address = mysqli_real_escape_string($conn, $_REQUEST['address']);
$type = mysqli_real_escape_string($conn, $_REQUEST['type']);
$update_query="update gym set gym_id='$gym_id',gym_name='$name',address='$address',type='$type' where gym_id='".$_GET['id']."'";
$update_sql=mysqli_query($conn,$update_query);
$err="<div class='alert alert-success'><b>Gym Details updated</b></div>";
}
$con=mysqli_query($conn,"select * from gym where gym_id='".$_GET['id']."'");
$res=mysqli_fetch_assoc($con);
?>
<div class="container">
<form class="form-group mt-3" method="post" action="">
<div><h3>UPDATE GYM</h3></div>
<?php
echo @$err;
?>
<label class="mt-3">GYM ID</label>
<input type="text" name="id" value="<?php echo @$res['gym_id'];?>" class="form-control">
<label class="mt-3">GYM NAME</label>
<input type="text" name="name" value="<?php echo @$res['gym_name'];?>" class="form-control">
<label class="mt-3">GYM ADDRESS</label>
<input type="text" name="address" value="<?php echo @$res['address'];?>" class="form-control">
<label class="mt-3">GYM TYPE</label>
<input type="text" name="type" value="<?php echo @$res['type'];?>" class="form-control">
<button class="btn btn-dark mt-3" type="submit" name="gym">UPDATE</button>
</form>
</div>