-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-edit.php
More file actions
69 lines (65 loc) · 2.7 KB
/
user-edit.php
File metadata and controls
69 lines (65 loc) · 2.7 KB
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
<?php
session_start();
require 'connection.php';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User - Edit</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
</head>
<body>
<?php include('navbar.php')?>
<div class="container mt-5">
<?php include('notEmpty.php'); ?>
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4>Add user
<a href="index.php" class="btn btn-danger float-end">Return</a>
</h4>
</div>
<?php
if(isset($_GET['id'])){
$user_id = $_GET["id"];
$sql = "SELECT * FROM usuarios WHERE id = '$user_id'";
$result = mysqli_query($connection, $sql);
if(mysqli_num_rows($result) > 0){
$user = mysqli_fetch_assoc($result);
}
?>
<div class="card-body">
<form action="action.php" method="post">
<input type="hidden" name="id" value = "<?= $user['id'] ?>">
<div class="mb-3">
<label for="nameId">Name</label>
<input type="text" name="name" id="nameId" value="<?= $user['name']?>" class="form-control">
</div>
<div class="mb-3">
<label for="emailId">Email</label>
<input type="text" name="email" id="emailId" value="<?= $user['user_email']?>" class="form-control">
</div>
<div class="mb-3">
<label for="dateId">Date of Birth</label>
<input type="date" name="date_of_birth" id="dateId" value="<?= $user['date_of_birth']?>" class="form-control">
</div>
<div class="mb-3">
<button type="submit" name="update_user" class="btn btn-primary">Save</button>
</div>
</form>
</div>
<?php
} else {
echo "<h5>User not found</h5>";
}
?>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</body>
</html>