Tra Từ Điển

Thời gianTiếtThứ 2Thứ 3Thứ 4Thứ 5Thứ 6
8g40 - 9g101Tiếng Việt
Tiếng Anh
Tiếng Việt
Tiếng Việt
9g10 - 9g302Nghỉ giải lao
Tiếng Anh
Nghỉ giải lao
Nghỉ giải lao
9g30 - 10g3Toán
Toán
Toán

Tuesday, December 28, 2021

Sản phẩm mới, Sản phẩm xem nhiều

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
#ds_sp{width: 620px; margin: auto;}
.sanpham{width: 120px; float: left; height: 250px; border: 1px #4D3BE5 solid; margin-right: 2px; margin-bottom: 2px;}
.ht{font-size: 20px; color: #F10C0F; font-weight: bold;}
.tieude{ background-color:#0A16F0; font-size:20px; font-weight:bold; margin-bottom:10px; margin-top:10px; width:100%; color:#F5F3F3;}
</style>
</head>

<body>
<div id="ds_sp">
<div class="tieude">Sản Phẩm Mới</div>
<?php
include("connect.php");
//Quy ước 1 trang gồm 20sp:
$sp=5*2;
//Truy vấn lấy tất cả sản phẩm:
$sl="select TenSP, UrlHinh, Gia from webtm_sanpham";
$kq=mysqli_query($link,$sl);
//tính tổng sản phẩm:
$tsp=mysqli_num_rows($kq);
//Tính tổng số trang:
$tst=ceil($tsp/$sp);
//Tính trang hiện tại:
if(isset($_GET['p'])) $p=$_GET['p'];
else $p=1;
//Tính vị trí cần để lấy sản phẩm:
$vt=($p-1)*$sp;
$slsp="select TenSP, UrlHinh, Gia from webtm_sanpham ORDER BY idSP DESC LIMIT 0,10";
$kqsp=mysqli_query($link,$slsp);
while($d=mysqli_fetch_array($kqsp))
{ ?>
<div class="sanpham">
<p><img src="<?php echo $d['UrlHinh'];?>" width="120"/></p>
<p><?php echo $d['TenSP'];?> <br/><?php echo $d['Gia'];?></p>
</div>
<?php }?>

<div class="tieude" style="clear: left;" >Sản Phẩm Xem Nhiều</div>
<?php
$slsp2="select TenSP, UrlHinh, Gia from webtm_sanpham ORDER BY SoLanXem DESC LIMIT 0,5";
$kqsp2=mysqli_query($link,$slsp2);
while($d2=mysqli_fetch_array($kqsp2))
{ ?>
<div class="sanpham">
<p><img src="<?php echo $d2['UrlHinh'];?>" width="120"/></p>
<p><?php echo $d2['TenSP'];?> <br/><?php echo $d2['Gia'];?></p>
</div>
<?php }?>


</div>
</body>
</html>

0 comments:

Post a Comment