2017-06-20 10 views
0

私はLinux上でPHPフォームで作業していますが、2つの異なるテーブルと2つの異なるクエリに情報を表示しようとすると問題が発生します。上のレコードの数を表示し、2番目のすべてのレコードを示します。単純な形式で2つ以上のクエリと異なるデータを表示するPHP

<?php 
     include_once 'dbcon.php'; 
?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Monitoring</title> 
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css" /> 
<script src="jquery.js" type="text/javascript"></script> 
<script src="js-script.js" type="text/javascript"></script> 
</head> 

<body> 

    </div> 
</div> 
<div class="clearfix"></div> 

<div class="container"> 
<a href="generate.php" class="btn btn-large btn-info"><i class="glyphicon glyphicon-plus"></i> &nbsp; Add Records</a> 
</div> 

<div class="clearfix"></div><br /> 



<div class="container"> 
<form method="post" name="frm"> 
<table class='table table-bordered table-responsive'> 
<tr> 
<th>number</th> 
</tr> 

<div class="container"> 
<form method="post" name="frm"> 
<table class='table table-bordered table-responsive'> 
<th>contry</th> 
<th>id</th> 
<th>Name</th> 
<th>core</th> 
<th>size</th> 
<th>type</th> 
<th>Status</th> 
<th>date</th> 
</tr> 
<?php 
     $res = $MySQLiconn->query("select * table ;"); 
     $count = $res->num_rows; 

     if($count > 0) 
     { 
       while($row=$res->fetch_array()) 



$res2 = $MySQLiconn->query("select COUNT(id) as number from table2;"); 
     $count1 = $res2->num_rows; 
     if($count1 > 0) 
     { 
     while($row1=$res2->fetch_array()) 

{ 
         ?> 
         <tr> 
         <td><?php echo $row1['number']; ?></td> 
          <?php 
        ?><tr> 
         <td><?php echo $row['contry']; ?></td> 
         <td><?php echo $row['id']; ?></td> 
         <td><?php echo $row['name']; ?></td> 
         <td><?php echo $row['core']; ?></td> 
         <td><?php echo $row['size']; ?></td> 
         <td><?php echo $row['type']; ?></td> 
         <td><?php echo $row['status']; ?></td> 
         <td><?php echo $row['date']; ?></td> 
         </tr> 
         <?php 

} 
} 
     } 
     else 
     { 
       ?> 
     <tr> 
     <td colspan="3"> No Records Found ...</td> 
     </tr> 
     <?php 
     } 
?> 

<?php 

if($count > 0) 
{ 
     ?> 

    <?php 
} 

?> 

誰かが私にそのような

+0

2つのテーブルの結合データを出力しますか? –

+0

この質問を簡略化してください。希望する出力の例を示します。 – mkaatman

+0

はい、確かめてください – Dorian

答えて

0

何かを助けて、最初のボックスでのカウントと第二のショーのすべての値を表示します。

enter image description here

関連する問題