我有3张桌子 画廊 id =主键 照片 有关 分类 id =主键 title = varchar数据类型 部分 id =主键 Related =类别id表的外键 每个画廊都有一个类别,每个类别都有很多部分。 当用户点击类别标题时,我只想加载与类别表相关的部分。
这是主要部分,工作正常
<div class="image-set">
<?php
$selectgallery=$connection->query("SELECT * FROM gallery where relation='".$_REQUEST['gall']."' && project='A");
while($resultgallery=$querygallery->fetch_assoc()) {
?>
<a class="example-image-link" href="images/fcomail/gallery/<?php echo $resultgallery['name']; ?>" rel="lightbox[roadtrip]" ><img class="example-image" src="images/fcomail/gallery/<?php echo $resultgallery['name']; ?>" width="110" height="100"></a>
<?php } ?>
</div>
我有一个侧栏,会显示与类别
相关的部分<div class="page-dta-right"
<table class="slide-tb">
<tr>
<td colspan="2" >
<p class="slide-title">
<strong>CATEGORIES</strong></p> </td>
</tr> <tr>
<td colspan="2" align="center" valign="top" height="1px" >
<hr/></td>
</tr>
<?php
$section_query=$connection->query("SELECT * FROM gallery_section where? ---Here is the problem---- ");
while($res123=$section_query->fetch_assoc()) { ?>
<tr>
<td width="81%"><p class="slide-txt-body">
<a href="gall2.php?gall=<?php echo $res123['id']; ?>"><?php echo $res123['title']; ?> </a> </tr>
<tr>
<td colspan="2" align="center" valign="top" height="1px" >
<hr/></td>
</tr><?php } ?>
</table></div>
有关如何重新提取与类别相关的选择语句的任何建议。