ตรง use ใน ฐานข้อมูล แบบนี้อะคับ
----------
id name use
1 1 1
2 2 2
3 3 3
------------
อันนี้ เชื่อมต่อ ฐานคับ
<?
include "connect.php";
mysql_select_db("gangdb");
$sql="select * from table ORDER BY field id DESC LIMIT 3; ";
$result = mysql_query($sql);
mysql_close();