-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathds_sp.php
More file actions
93 lines (92 loc) · 2.69 KB
/
ds_sp.php
File metadata and controls
93 lines (92 loc) · 2.69 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="./css/style_adminn.css" type="text/css" >
<title>Danh sách sản phẩm</title>
<style>
body {
background-image: url("./pic/bg.jpg");
margin: 0;
padding: 0;
}
.lay-sp{
height: auto;
width: 75%;
float: right;
}
.lay-sp #table{
width:850px;
border-collapse:collapse;
border:1px solid black;
margin-left: auto;
margin-right: auto;
}
#table input{
width:auto;
border :none;
}
#table th,td{
border: 3px solid black;
}
#table tr:nth-child(odd){
background-color: #96b4cf;
}
#table tr td a{
text-decoration: none;
color: red;
}
#table tr th a{
text-decoration: none;
color: red;
}
</style>
</head>
<body>
<div id="frame-top">
<div id="logo">
<a href="#">
<img src="./pic/logoip.png" alt="">
</a>
</div>
<div id="A">
<p>QUẢN LÝ CỬA HÀNG</p>
</div>
</div>
<div id="frame-menu">
<ul>
<li><a href="index.php">Trang chủ</a></li>
<li><a href="admin.php">Thêm sản phẩm</a></li>
<li><a href="sua_sp.php">Sửa Sản Phẩm</a></li>
<li><a href="ql_nhanvien.php">QL Nhân viên</a></li>
</ul>
</div>
<div class="lay-sp">
<table id="table">
<tr>
<th>MSSP</th>
<th>Tên SP</th>
<th>Giá</th>
<th>Số lượng</th>
<th>Ảnh minh họa</th>
<th>Ghi chú</th>
</tr>
<?php
include "xuly_laysp.php";
for($i=0;$i<count($arr);$i++){
$line="<tr>
<td>".$arr[$i]["mssp"]."</td>
<td>".$arr[$i]["tensp"]."</td>
<td>".$arr[$i]["gia"]."</td>
<td>".$arr[$i]["soluong"]."</td>
<th><img src='./pic/".$arr[$i]["hinh"]."' width='100px' height='100px'></th>
<td>
<button type='submit' name='s_submit'><a href='xoa_sp.php?id=".$arr[$i]["mssp"]."'>Xóa</a></button></td>
</tr>";
echo($line);
}
?>
</table>
</div>
</body>
</html>