我需要为从 mysql 显示的每一行添加不同的样式。我正在显示最后 4 行,从第一行开始,样式应该被称为第一、第二、第三、第四。
<?php
$sql = "SELECT * FROM articles ORDER BY id DESC LIMIT 4";
$result = $con->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo '
<div class="ot-slider-layer first">
<a href="articles/'.$row['slug'].'">
<strong><i style="background-color: #ed2d00; color: #fff;">'.category_name_by_id($row['category']).'</i>'.$row['title'].'</strong>
<img src="images/articles/'.$row['image'].'" alt="'.$row['title'].'" />
</a>
</div>
';
}
} else {
echo "There is no news";
}
?>
慕后森
一只甜甜圈
波斯汪