表1
+------+--------+
| code | name |
+------+--------+
| 1056 | Alex |
| 1057 | Rudy |
| 1058 | Brian |
+------+--------+
テーブル_2
+------+------+
| code | rate |
+------+------+
| 1056 | 9 |
| 1057 | 7 |
| 1058 | 8 |
+------+------+
これらのテーブルに基づいて、それらを結合してテーブルを作成したいと考えています。
最初のファイル、show.php
echo "<td><a href=print.php?code=$row[code]>Print....</a></td>";
結合テーブルを出力する 2 番目のファイル、print.php
//...
$code = $_GET['code'];
$res = mysql_query("select table_1.code, table_1.name, table_2.rate from table_1, table_2, where table_1.code = table_2.code");
//...
while($row = mysql_fetch_array($res)){
$a=$row['code'];
$b=$row['name'];
$c=$row['rate'];
$html .= '<tr><td>'.$a.'</td><td>' .$b. '</td><td>'.$c.'</td></tr>';
}
$html .= '</table> </center>';
$mpdf->WriteHTML($html,2);
$mpdf->Output('print.pdf','I');
exit;
//...
しかし、結果はすべての行を示しています:
+------+--------+------+
| code | name | rate |
+------+--------+------+
| 1056 | Alex | 9 |
| 1057 | Rudy | 7 |
| 1058 | Brian | 8 |
+------+--------+------+
結果をこのように1行だけ表示する方法は? :
+------+--------+------+
| code | name | rate |
+------+--------+------+
| 1056 | Alex | 9 |
+------+--------+------+