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

Wednesday, December 15, 2021

in HoTenCS từ database ra màn hình - Tiếp theo in thêm TenBH dưới HoTenCS - Tiếp theo chỉ hiện những ca sĩ có bài hát

 <!doctype html>

<html>
<head>
<meta charset="utf-8">
<title>Ca sĩ Duc</title>
</head>
<body>
<?php
$link=@mysqli_connect("localhost","root","") or die("Không tìm thấy Sever");
mysqli_select_db($link,"webtintuc") or die("Không tìm thấy DB");
mysqli_query($link, "set names 'utf8'");
$sl="select * from webnhac_casi";
$kq=mysqli_query($link,$sl);
?>
<ul>
<?php
while($d=mysqli_fetch_array($kq))
{
$slbh="select idBH, TenBH from webnhac_baihat where idCS=".$d['idCS'];
$kqbh=mysqli_query($link,$slbh);
if(mysqli_num_rows($kqbh)>0)
{
?>
<li><?php echo $d['HoTenCS']; ?>
<ul>
<?php
while($dbh=mysqli_fetch_array($kqbh)){
?>
<li><?php echo $dbh['TenBH']; ?></li>
<?php } ?>
</ul>
</li>
<?php } } ?>
</ul>
</body>
</html>

0 comments:

Post a Comment