為了便于隨時(shí)echo,存為字符串最好,一般的代碼如下:
創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的泰興網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
$sql='select * from xxx order by xxid desc limit 5';//limit 5表示只取5個(gè),order by xxxid desc表示按xxxid降序排列,可以顯示最新的5個(gè)
$res=mysql_query($sql);
$str5='';//保存的結(jié)果
while($row=mysql_fetch_array($res)) $str5.=$row[0].‘br';//可能你需要修改這一句,控制顯示格式
mysql_free_result($res);
以后你就可以隨時(shí)echo $str5了。
就一句的話寫不出來(lái)。。2句可以實(shí)現(xiàn)
先查出前5條,得到最后一跳數(shù)據(jù)的id ,再寫一查詢語(yǔ)句只要id第一條查詢得出的id 就是從第五條開(kāi)始的了
?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);
?