我刚刚在一个完美运行的项目中使用了这段代码,但我注意到第一条记录始终没有显示。例如。 SQL查询列出了15个结果,但输出只显示14,缺少第一个记录。有什么想法吗?
<?php
$result = mysql_query($sql);
//first put all the results into an array so we can look backward and see previous items
$resultSet = array();
while($record = mysql_fetch_array($rs2Dfiles)) {
$resultSet[] = $record;
}
for ( $i = 0 ; $i < count($resultSet) ; $i++ ) {
if ( $i == 0 ) {
//for the first item, show the category name
echo '<div class="Box"><div class="BoxHeader gfgreen"><h3>'.$resultSet[$i]['ftCatName'].'</h3> </div>';
} else if ($resultSet[$i]['ftCatName'] != $resultSet[$i-1]['ftCatName']) {
//every time we encounter a new category, display a new line and show the category name
echo '</div><div class="Box"><div class="BoxHeader gfgreen"><h3>'.$resultSet[$i] ['ftCatName'].'</h3></div>';
}
echo '<p class="Document"><a title="View file details" href="download.php?id='.$resultSet[$i] ['DownloadID'].'">'.$resultSet[$i]['DownloadName'].'</a> ('.formatSize( filesize('DOCS/'.$resultSet[$i]['DownloadFilename'].'')).')</p>';
}
echo '</div>';
?>
答案 0 :(得分:1)
你可以使用foreach,可能会让事情变得更容易吗?
$last = null;
foreach($resultSet as $resultRow)
{
if ($resultRow != $last)
{
echo 'your html content goes here';
echo $resultRow['propertyName'];
}
$last = $resultRow
}