これを行う簡単な方法があるかどうか疑問に思っています...
行の束を持つテーブルがあり、「page_group」という名前の 1 つの列の特定の値に基づいて個別に表示する必要があります。現在、結果のポインターをゼロにリセットすると機能しますが、結果をグループ化するために少なくとも 15 の異なるセクションがあるため、より簡単なコーディング方法があるかどうか疑問に思っています...?
//this is the query
$q_home = mysql_query("SELECT * FROM pages WHERE page_nav = 'No' ORDER BY page_group ASC");
//this would show results 1, showing all rows that have the value "sample1"
<h3>Result 1</h3>
<ul>
<?
while($r_nav = mysql_fetch_assoc($q_home)){
$group_folder = $r_nav['page_group'];
if ($r_access["$group_folder"] == "Yes" && $group_folder == 'sample1') {
$access = 'block;';
} else {
$access = 'none;';
} {;
echo '<li style="display:'.$access.'"><a href="'.$group_folder.'/'.$r_nav['page_url'].'.php">'.$r_nav['page_name'].'</a></li>';
}
}
?>
</ul>
//this would be result 2 showing all rows that have value "sample2"
<h3>Result 2</h3>
<ul>
<?
mysql_data_seek($q_home, 0);
while($r_nav2 = mysql_fetch_assoc($q_home)){
$group_folder = $r_nav2['page_group'];
if ($r_access["$group_folder"] == "Yes" && $group_folder == 'sample2') {
$access = 'block;';
} else {
$access = 'none;';
} {;
echo '<li style="display:'.$access.'"><a href="'.$group_folder.'/'.$r_nav2['page_url'].'.php">'.$r_nav2['page_name'].'</a></li>';
}
}
?>
</ul>