Beo_cu
01-09-14, 10:46 AM
Code đơn giản :
file data.php
<?php
error_reporting (0);
$db_host = "localhost";
$db_name = 'ugrp';
$db_username = 'root';
$db_password = '';
@mysql_connect("{$db_host}", "{$db_username}", "{$db_password}") or die("Không thể kết nối database");
@mysql_select_db("{$db_name}") or die("Không thể chọn database");
?>
Hiển thị trong php
<?php
require_once("data.php");
$ditmemay = mysql_query("SELECT * FROM `accounts` ORDER BY `Money` DESC LIMIT 20");
while($umbala = mysql_fetch_assoc($ditmemay)){
echo ' '.$umbala['Username'].' có '.$umbala['Money'].' VNĐ ';
}
?>
Ở đây
ORDER BY `Money` ta lấy Top Money
DESC LIMIT 20 muốn bao nhiêu TOP User ra.
P/s : Giúp các bạn muốn tạo 1 TOP trên web của mình !~o)
Pro biết rồi chém nhẹ ạ ^:)^ ^:)^
file data.php
<?php
error_reporting (0);
$db_host = "localhost";
$db_name = 'ugrp';
$db_username = 'root';
$db_password = '';
@mysql_connect("{$db_host}", "{$db_username}", "{$db_password}") or die("Không thể kết nối database");
@mysql_select_db("{$db_name}") or die("Không thể chọn database");
?>
Hiển thị trong php
<?php
require_once("data.php");
$ditmemay = mysql_query("SELECT * FROM `accounts` ORDER BY `Money` DESC LIMIT 20");
while($umbala = mysql_fetch_assoc($ditmemay)){
echo ' '.$umbala['Username'].' có '.$umbala['Money'].' VNĐ ';
}
?>
Ở đây
ORDER BY `Money` ta lấy Top Money
DESC LIMIT 20 muốn bao nhiêu TOP User ra.
P/s : Giúp các bạn muốn tạo 1 TOP trên web của mình !~o)
Pro biết rồi chém nhẹ ạ ^:)^ ^:)^