-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails3.php
45 lines (37 loc) · 958 Bytes
/
details3.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
<?php require 'php database connection.php'?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
$id = $_GET['e_id'];
$sql = "SELECT * FROM employee WHERE e_id = '$id'";
$reqult = mysqli_query($conn,$sql);
?>
<a href="employes.php">Back</a>
<ul>
<?php
if( mysqli_num_rows($reqult) > 0)
{
while($employee = mysqli_fetch_assoc($reqult))
{
?>
<li><strong>Name:</strong> <?php echo $employee['e_name']; ?> </li>
<li><strong>Mail:</strong> <?php echo $employee['e_email']; ?> </li>
<li><strong>Phone:</strong> <?php echo $employee['e_phone']; ?> </li>
<?php
}
}
else
{
echo 'o result';
}
?>
</ul>
</body>
</html>