Çok temel bir soru .. ama ben noktayı kaçırıyorum .. benim masada bu veri var:
ID SITEID SECTION
1 1 posts
2 2 posts
3 1 aboutme
4 1 contact
5 2 questions
Çıkışı bir dizidir. Ben bunu değiştiremezsiniz.
Ben bu dizi ile döngü için bir single ile php bu çıkışı yapmak istiyorum:
<h1> sections for site 1 </h1>
posts
aboutme
contact
<h1>sections for site 2 </h1>
posts
questions
$ SectionsArray benim çıktı nerede olduğunu, böyle bir şey yapmaya çalışıyorum. Ve ben siteid aynı ise bir döngü yapmak, sonra kontrol etmek istediğiniz ..
for ($j = 0; $j < sizeof($sectionsArray); $j++) {
while (siteid == 1) {
echo '<h1>' . $sectionsArray['siteid'] . '</h1>';
}
echo "<a href='section.php?id=' . $sectionsArray['id'] . ' '">' . $sectionsArray['section'] . '</a>;
}
Ama ben bir döngü içinde .. Bir süre ile sonuçlarını "gruplama" mantığı alamadım. Herhangi bir ışık kabul edilecektir.
Teşekkürler