我在這裏有一個foreach循環,它將數據庫中的圖像顯示在網頁上。我想要做的是迭代遍歷foreach循環,所以最新的內容首先顯示在網頁上。這是我的代碼:在PHP中向後遍歷一個foreach循環
$sql = "SELECT COUNT(*) FROM 'UPLOADPICS'";
if ($sth = $dbhandle->query($sql)){
if ($sth->fetchColumn() > 0){
$sql = "SELECT link FROM 'UPLOADPICS'";
foreach ($dbhandle->query($sql) as $row){
$content = $row['link'];
?>
<img src="<?php echo $content ?>" />
<br/>
<br/>
<?php
}
}
else {
print "No rows matched the query";
}
這可能嗎?非常感謝!
添加'ORDER BY'循環的順序通緝。在查詢之前,您不需要計算... –
爲什麼不在SQL中對結果進行排序? – candyleung