如何从2 mysql数据表中列出数据到html表

时间:2018-07-01 13:39:12

标签: php mysqli

在我的mysql数据库中,有2个表名为tblapps和tblapps2。我已经在tblapps中存储了应用程序的某些数据,而在tblapps2中存储了其余数据。 在我的应用程序的后端,当前正在显示tblapps的所有数据,但是突然我有一个要求,我希望从tblapps2的列名“ country”和mysqli表列名“ precountry”中再显示一列。这对我来说是全新的,我还是无法做到这一点。

如果有任何帮助,将不胜感激。

<div class="portlet-body flip-scroll">                                                      
                                <?php                                                           
                                $sql = "SELECT * FROM tblapps order by id desc";                            
                                $result = $connect->query($sql);                            
                                if ($result->num_rows > 0) {
                                    echo "<table class='display' id='example'>
                                          <thead class='flip-content'>

                                            <tr>
                                                <th>ID</th>
                                                <th>App ID</th>
                                                <th>Full Name</th>
                                                <th>Journey Date</th>
                                                <th>App type</th>
                                                <th>Visa Type</th>
                                                <th>Fee</th>
                                                <th>Nationality</th>
                                                <th>Country</th>
                                                <th>Submit Date</th>
                                                <th>payment</th>
                                                <th>status</th>
                                            </tr>

                                            </thead>";                                                                                                               
                                      while($row = $result->fetch_assoc()) {
                                             echo"<tr>
                                                <td>" . $row["id"]. "</td>
                                                <td><a href=\"formdetails.php?app_id=".$row["app_id"]."\">". $row["app_id"]. "</a></td>
                                                <td>" . $row["firstname"]. "&nbsp;" . $row["lastname"]."</td>
                                                <td>" . $row["journeydate"]. "</td>
                                                <td>" . $row["appl_type"]. "</td>
                                                <td>" . $row["visatype"]. "</td>
                                                <td>" . $row["visa_fee"]. "</td>
                                                <td>" . $row["nationality"]. "</td>
                                                <td>" . $row["precountry"]. "</td>
                                                <td>" . $row["sdate"]. "</td>
                                                <td>" . $row["pay_status"]. "</td>
                                                <td>" . $row["appstatus"]. "</td>
                                                </tr>"; }
                                    echo "</table>";                                } else {    echo "0 results";}$connect->close();?>
                                </div>

1 个答案:

答案 0 :(得分:0)

您可以使用SQL JOIN来匹配两个表中的值。

实现取决于您的表结构