forked from z4hed/HFEST-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WorkHistory.php
55 lines (46 loc) · 1.38 KB
/
WorkHistory.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
<!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>Work History</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php include 'navbar.html'; ?>
<?php
include 'ConnectToDB.php';
if (isset($_POST['delete'])) {
$workHistoryIdToDelete = intval($_POST['work_history_id']);
$deleteQuery = "DELETE FROM workHistory WHERE ID = $workHistoryIdToDelete";
mysqli_query($conn, $deleteQuery);
}
$tablename = 'workHistory';
$query = 'SHOW COLUMNS FROM ' . $tablename;
$column_names = mysqli_query($conn, $query);
echo "<table class=\"table\">";
echo "<tr>";
while ($row = mysqli_fetch_assoc($column_names)) {
echo '<th>' . $row['Field'] . '</th>';
}
echo '<th> Delete </th>';
$query = 'SELECT * FROM ' . $tablename;
$table_data = mysqli_query($conn, $query);
while ($row = mysqli_fetch_assoc($table_data)) {
echo "<tr>";
foreach ($row as $value) {
echo "<td>" . $value . "</td>";
}
echo "<td>";
echo "<form method='post'>";
echo "<input type='hidden' name='work_history_id' value='" . $row['ID'] . "'>";
echo "<button class=\"delete-button\" type='submit' name='delete'>Delete</button>";
echo "</form>";
echo "</td>";
echo "</tr>";
}
echo "</table>";
?>
</body>
</html>