首先確定 數(shù)據(jù)庫中的信息的數(shù)據(jù)的排序方式
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名注冊、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、烏什網(wǎng)站維護、網(wǎng)站推廣。
然后進行數(shù)據(jù)庫訪問,提取所有數(shù)據(jù),然后進行選擇,列出按次排序方式排序的記錄數(shù),只列出10條
最后,確定刪除后,進行循環(huán)刪除
$result????=?mysql_query('select?*?from?mytable?limit?0,?20');
$i???????=?0;
while?($rs?=?mysql_fetch_array($result))
{
echo?$rs['myfield'].'?';
$i++;
if?($i?==?10)
{
echo?'br?/';
}
}
為了便于隨時echo,存為字符串最好,一般的代碼如下:
$sql='select * from xxx order by xxid desc limit 5';//limit 5表示只取5個,order by xxxid desc表示按xxxid降序排列,可以顯示最新的5個
$res=mysql_query($sql);
$str5='';//保存的結(jié)果
while($row=mysql_fetch_array($res)) $str5.=$row[0].‘br';//可能你需要修改這一句,控制顯示格式
mysql_free_result($res);
以后你就可以隨時echo $str5了。
?php
header("content-type:text/html;charset=utf-8");
$conn = mysql_connect('localhost','root','123456');
mysql_select_db('dbname',$conn);
mysql_query("set names utf8");
$sql = "select infoname from tablename limit 5 order by id desc";
$res = mysql_query($sql,$conn);
echo "html";
echo "head";
echo "/head";
echo "body";
echo "ul";
while($row = mysql_fetch_assoc($res)){
echo "li".$row['infoname']."/li";
}
echo "/ul";
echo "/body";
echo "/html";
mysql_free_result($res);
mysql_close($conn);
?