简体   繁体   English

如何使用php外键制作表格

[英]how to make table using php foreign key

I have a question about PHP query. 我有一个关于PHP查询的问题。 I have 2 tables. 我有2张桌子。
First Table: 第一表:

|id_table1 | first_name | last_name |
|----------|------------|-----------|
|    1     |    John    |    Doe    |
|    2     |    Doe     |    John   |

Second Table: 第二张表:

|id_table2 | hobby  | age | id_table1|
|----------|--------|-----|----------|
|    1     |football| 17  |    1     |
|    2     |swimming| 18  |    2     |

I want to make table like this: 我想做这样的表:

|    John Doe    |       |   Doe John    |
|----------------|       |--------|------|
|   Hobby  | Age |       |  Hobby |  Age | 
|----------|-----|       |--------|------|
| football | 17  |       |swimming|  19  |
|basketball| 18  |

What is the syntax to make that table in php? 在php中创建该表的语法是什么? May be using foreach, but how? 可能正在使用foreach,但是如何使用? Thanks. 谢谢。

The code 编码

<?php
$ftable="select * from ftable";
$stable="select * from stable";
$ftable1= mysqli_query($conn, $ftable);
$stable1= mysqli_query($conn, $stable);
foreach ($ftable as $row) {
 echo "
  <tr>
   <th style='text-align: center' colspan='2'>".$row['first_name']."</th>
  </tr>
  <tr>
   <th>Hobby</th>
   <th>Age</th>
   </tr>";

 foreach ($ftable1 as $row1) {
  echo "
   <tr>
    <td>".$row1['hobby']."</td>
    <td>".$row1['age']."</td>
    <tr>";
 }
}
?>

Just save the id number of ftable, then test for it in your 'for' loop for the second table, like this: 只需保存ftable的ID号,然后在第二个表的“ for”循环中对其进行测试,如下所示:

    <?php
    $ftable="select * from ftable";
    $stable="select * from stable";
    $ftable1= mysqli_query($conn, $ftable);
    $stable1= mysqli_query($conn, $stable);
    foreach ($ftable1 as $row) {
      $id_table1 = $row["id_table1"]; 
      echo "<tr><th style='text-align: center' colspan='2'>"
         .$row['first_name']."</th></tr>"
             ."<tr><th>Hobby</th>"
             ."<th>Age</th></tr>";

       foreach ($stable1 as $row1) {
           if ($row1["id_table1"] == $id_table1) {
              echo "<tr><td>$row1['hobby']</td><td>$row1['age']</td></tr>";
           }
       }
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM