只是想知道是否有人可以幫忙。我試圖從我的SQL數據庫加載數據到選項卡,並想知道是否有人知道如何將四行數據加載到四個不同的數組中。我認爲我幾乎在那裏與我的代碼,但有點卡住了。如何從表中選擇多行並將其放入單獨的數組中?
另外,如果有人知道任何教程從數據庫加載數據到也加載數據到每個[李]的選項卡,將不勝感激。 感謝您的幫助。
<?php
$query = mysql_query("SELECT title, author, date_added FROM table ORDER BY date_added DESC LIMIT 4");
$array = array();
while($row = mysql_fetch_assoc($query)){
$array[] = $row1;
?>
<div class="tabs-c">
<ul class="tab-c-nav">
<li class="tab-c-active"><a href="#tab-c-1"><?php echo $row1['title'];?></a></li>
<li><a href="#tab-c-2"><?php echo $row2['title'];?></a></li>
<li><a href="#tab-c-3"><?php echo $row3['title'];?></a></li>
<li><a href="#tab-c-4"><?php echo $row4['title'];?>/a></li>
</ul>
<div class="tab-c-content">
<div class="text-details-content-half-row">
<div class="text-details-content-row-text-left">Written by</div>
<div class="text-details-content-row-text-right"><?php echo $row1['author']?></div>
</div>
<div class="text-details-content-row-space"></div>
<div class="text-details-content-half-row">
<div class="text-details-content-row-text-left">Date Added</div>
<div class="text-details-content-row-text-right"><?php echo $row1['date_added']?></div>
</div>
</div>
不要忘記後$陣列[] = $行右括號};之前?> – davejal