表格显示的数据不完整

时间:2015-11-30 20:36:15

标签: php

第一个查询在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表中找到?

0 个答案:

没有答案