,是可以實(shí)現(xiàn),但是要增加一些判斷,這樣就多了沒必要的PHP代碼;
慶安網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),慶安網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為慶安1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的慶安做網(wǎng)站的公司定做!
建議你用div寫,然后控制整理寬度,也就是說你5個(gè)圖片循環(huán)出來的寬度不能大于沒一行的寬度,大了后,也就是第6張圖的div就會(huì)從第二行開始排列了。這里設(shè)置固定的像素,就不會(huì)受瀏覽器的 影響。
參考這個(gè)樣式代碼:
html
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8"
title無標(biāo)題文檔/title
style type="text/css"
!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.alldiv{
width:685px; /*137*5=685 */
}
.xunhuan {
width:137px;
float:left
}
--
/style/head
body
div class="alldiv"
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
div class="xunhuan"img src="" width="137" height="80"/div
/div
/body
/html
為了php接口的后續(xù)更新維護(hù),常規(guī)做法是列表頁跟詳情頁分別寫接口,但數(shù)據(jù)量小的情況下也是一次性返回的。不過需要注意以下前提:
列表頁要帶分頁,20以下為佳(可根據(jù)接口返回時(shí)間酌情調(diào)整)。
詳情頁內(nèi)容較少。
跳轉(zhuǎn)詳情頁的時(shí)候,參數(shù)可以直接拼接在url后,以便于傳遞到詳情頁面。
function?list_tables($database)?
{?
$rs?=?mysql_query("SHOW?TABLES?FROM?$database");?
$tables?=?array();?
while?($row?=?mysql_fetch_row($rs))?{?
$tables[]?=?$row[0];?
}?
mysql_free_result($rs);?
return?$tables;?
}