Em mới học PHP.
Em có cái code như sau:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PHP</title>
</head>
<body>
<?php
$conn = mysql_connect("localhost", "root", "");
if (!$conn)
{
die("Không thể kết nối đến CSDL");
}
else
{
mysql_select_db("qlsv", $conn);
mysql_query("SET NAMES 'UTF-8'");
$result = mysql_query("Select * From SinhVien", $conn);
echo "Số bảng ghi: ".mysql_num_rows($result)."<br />\n";
while($row = mysql_fetch_assoc($result))
{
echo "MaSV = ".$row['MaSV']."<br>\n";
echo "HoTen = ".$row['TenSV']."<br>\n";
} //end while
mysql_free_result($result);
}
mysql_close($conn);
?>
</body>
</html>
khi chạy lên trình duyệt thì nó ra thế này

Xem trong PhpMyAdmin thì là thế này

Các bác giải thích hộ em sao trên trình duyệt nó ko hiển thị tiếng việt ??
Cách sữa thế nào.