-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails2.php
53 lines (47 loc) · 1.08 KB
/
details2.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
<?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);
?>
<table border="1">
<tr>
<td>ID</td>
<td>Name</td>
<td> Email </td>
<td> Phone </td>
<td> Details </td>
</tr>
<?php
if( mysqli_num_rows($reqult) > 0)
{
while($employee = mysqli_fetch_assoc($reqult))
{
?>
<tr>
<td> <?php echo $employee['e_id']; ?> </td>
<td> <?php echo $employee['e_name'] ?> </td>
<td> <?php echo $employee['e_email'] ?> </td>
<td> <?php echo $employee['e_phone'] ?> </td>
<td> <a href=""> Details</a></td>
</tr>
<?php
}
}
else
{
echo 'o result';
}
?>
</table>
</body>
</html>