-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.php
More file actions
23 lines (20 loc) · 1.21 KB
/
list.php
File metadata and controls
23 lines (20 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
include 'connecting.php';
$q = "SELECT *
from (select Courses.name, Worker.full_name, Education.competence, Worker.id_worker
from Courses inner join Worker
on Courses.level=Worker.level
inner join Education on Worker.id_education=Education.id_education) as new_table;";
$table = mysqli_query($link, $q);
echo "<table border = 1 align=center> <tr> <th> ФИО_Соискателя </th> <th> Компетенция </th> <th> Название_разряда </th> <th>Редактировать</th> <th>Удалить</th> </tr>";
while($row = mysqli_fetch_array($table)) {
echo "<tr>
<td>" . $row['full_name']. "</td>
<td>" . $row['competence'] . "</td>
<td>" . $row['name'] . "</td>
<td align='center'><a href = '/edit.php?id_worker=". $row['id_worker'] . "'><img src='https://www.download3k.ru/icons/Notepad-192284.png?v=1'></a></td>
<td align='center'><a href = '/delete.php?id_worker=". $row['id_worker'] . "'><img src='http://www.advanceduninstaller.com/a6072e1ef2e728097ebd0a4695ab3132-icon.ico'></a></td>
</tr>";
}
echo "<tr><td colspan='5' align='center'><a href = '/add.php?'><img src='https://www.download3k.ru/icons/Add-Email-ActiveX-Professional-141096.png?v=1'></a></td></tr></table>";
mysqli_close($link);