第一个查询在Office
表中显示两个值:
peter
James
我想在第二个查询中显示数据,其中字段office_manager
包含Claims_Assigned
表中的两个值。
$req="SELECT ContactName FROM Office p inner join
claims_follow_up.user o On p.ClientID=o.office Where o.username='".$u."'
and o.password='".$p."' ";
$resc = mysqli_query($dbc, $req);
while($tab=mysqli_fetch_array($resc))
{
$clname=$tab['ContactName'];
echo $clname;
$req7= "select * from Claims_assigned where
office_manager='".$clname."' ";
$resz = @mysqli_query($dbc, $req7);
<table>
<th>Claim Status</th>
<th>Office</th>
<th>Insurance Carrier</th>
</tr>
while($final_result =mysqli_fetch_array($resz))
{
<tr>
<td><?php echo $final_result['Claim_Status'] ;?> </td>
<td><?php echo $final_result['office'];?> </td>
<td><?php echo $final_result['insurance_carrier'];?></td>
</tr>
}
}
</table>
第二个查询仅显示peter
的数据。如何显示james
的数据,这个值也可以在Claims_assigned
表中找到?