-
Notifications
You must be signed in to change notification settings - Fork 0
/
countfact_view.php
47 lines (41 loc) · 1.77 KB
/
countfact_view.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Счёт-фактура</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<center>
<h4>Приходная накладная ведомость</h4>
<?php
require_once 'connection_params.php'; // подключаем скрипт
$link = mysqli_connect($host, $user, $password, $database)
or die("Ошибка ".mysqli_error($link));
/*mysqli_character_set_charset(database_link link, string encoding) */
mysqli_set_charset($link, "utf8");
$query ="SELECT countfact.CountID, countfact.DateStart, countfact.Sum, IF(countfact.Cash, \"Да\", \"Нет\"), client.Company, worker.Worker FROM countfact INNER JOIN client ON countfact.ClientID = client.ClientID INNER JOIN worker ON countfact.WorkerID = worker.WorkerID";
$result = mysqli_query($link, $query) or die("Ошибка ".mysqli_error($link));
if($result)
{
$rows = mysqli_num_rows($result); // количество полученных строк
// CountID DateStart Sum Cash ClientID WorkerID
echo "<table border=1><tr><th>№ счёта-фактуры</th><th>Дата выписки</th><th>Сумма</th><th>Наличные</th><th>Клиент</th><th>Выдавший с/ф</th></tr>";
for ($i = 0 ; $i < $rows ; ++$i)
{
$row = mysqli_fetch_row($result);
echo "<tr>";
for ($j = 0 ; $j < 6 ; ++$j) echo "<td>$row[$j]</td>";
echo "</tr>";
}
echo "</table>";
// очищаем результат
mysqli_free_result($result);
}
mysqli_close($link);
?>
<a href="Menu.php">Вернуться в главное меню</a> <a href="countfact_add.php">Выписать счет-фактуру</a>
</center>
</body>
</html>