-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_view.php
47 lines (40 loc) · 1.35 KB
/
client_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>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Клиенты</title>
</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 * FROM client";
$result = mysqli_query($link, $query) or die("Ошибка " . mysqli_error($link));
if($result)
{
$rows = mysqli_num_rows($result); // количество полученных строк
echo '<table id="tablew"><tr><th>Id</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 < 4 ; ++$j) echo "<td>$row[$j]</td>";
echo "</tr>";
}
echo "</table>";
// очищаем результат
mysqli_free_result($result);
}
mysqli_close($link);
?>
<a href="Menu.php">Вернуться в главное меню</a> <a href="client_add.php">Добавить клиента</a>
</center>
</body>
</html>