Skip to main content

index.php - Kết nối đến server DB

 <!doctype html>

<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

<body>
<?php
//Kết nối đến server DB:
$link=@mysqli_connect("localhost","root","") or die("Không thể kết nối đến Server!");
//Chọn database cần thao tác:
mysqli_select_db($link,"webtintuc") or die("Không tồn tại DB này!");

//$link=mysqli_connect("localhost","root","","webtintuc") or die("Không thể kết nối đến Server!");
//Lấy dữ liệu từ bảng user: idUser, Hoten, Username, Email:
$sl="select idUser, HoTen, Username, Email from user";
//Thực hiện query:
$kq=mysqli_query($link,$sl);
$tong=mysqli_num_rows($kq);
echo "Số dòng dữ liệu lấy được:$tong<br/>";
/*for($i=1;$i<=$tong;$i++)
{
//Lấy 1 dòng dữ liệu từ $kq:
$d=mysqli_fetch_array($kq);
echo $d['HoTen']." có username là: ".$d['Username']."<br/>";
}*/

while($d=mysqli_fetch_array($kq))
{
echo $d['HoTen']." có username là: ".$d['Username']."<br/>";
}



?>
</body>
</html>

Comments

Popular posts from this blog

PHP#33MySQL#29 - Đếm lượt truy cập (KẾT THÚC KHÓA HỌC)

//hitcounter.php <?php session_start();  ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <?php  include("../connect.php"); //cập nhật số luowhtj truy cập: $sl="update counter set cnt=cnt+1"; mysqli_query($link,$sl); //Lấy dữ liệu số lượt truy cập để hiển thị ra web: $sl2="select * from counter"; $kq=mysqli_query($link,$sl2); $d=mysqli_fetch_array($kq); //Định dạng: $chuoi=str_pad($d['cnt'],6,"0",STR_PAD_LEFT); $luottrycap=""; for($i=0;$i<strlen($chuoi);$i++) { $tam=substr($chuoi,$i,1); $luottrycap.="<img src='images/$tam.png'/>"; } /*-Khi user truy cập vào website: +lần đầu tuy cập: Lưu thông tin của user lên csdl +Sau lần đầu tiên: cập nhtaaj lastvisit - Xóa các dòng dữ liệu quá 1 phút (Quy ước thời gian để khẳng định online hay offline: 1 phút) - Thống kê số liệu người dùng o...

2 (giao diện Visual C#) Solution Explorer

Bài 2 - SOME OTHER TIME - Vào dịp khác