?php
西城網站建設公司創(chuàng)新互聯公司,西城網站設計制作,有大型網站制作公司豐富經驗。已為西城數千家提供企業(yè)網站建設服務。企業(yè)網站搭建\外貿網站制作要多少錢,請找那個售后服務好的西城做網站的公司定做!
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);
?
為了便于隨時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='';//保存的結果
while($row=mysql_fetch_array($res)) $str5.=$row[0].‘br';//可能你需要修改這一句,控制顯示格式
mysql_free_result($res);
以后你就可以隨時echo $str5了。
連接數據庫我就不說了,直接給你SQL語句
$sql = "select * from table limit 1"
$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?/';
}
}