(PHP)如何将数据库中2个不同表的数据显示到引导表

时间:2017-07-27 15:58:47

标签: php mysql twitter-bootstrap

我是PHP的初学者。我目前正在开发一个网站,其中我想在引导程序table中显示来自MySQL 数据库中2个不同表的数据。这两个表是 客户端 useraccounts 。我想在一行中显示他们的数据。这就是我现在所拥有的:(Please Click to see the image)正如您在照片上看到的那样,我的问题是我只能显示来自客户端表的数据,而不是来自 useraccounts 。引导表中的空白单元格应该是来自 useraccounts 表的数据,但是我无法显示它。

以下是 客户 useraccounts: (tables) Please click the image

的表格

我们将非常感谢您的帮助。这是我的代码:

<?php
echo "<table style='cursor: pointer;' class='table table-hover table-striped 
table-bordered table-responsive ' >";
echo "<tr>
    <th>Company Name</th>
    <th>Contact Person</th>
    <th>Client Address</th>
    <th>Contact no.</th>    
    <th>E-mail</th>
    <th>User Birthdate</th>
    <th>User Mobile no.</th>
    <th>Username</th>
    <th>User Fistname</th>
    <th>User Lastname</th>
    <th>User Birthdate</th>
  </tr>";

class TableRows extends RecursiveIteratorIterator { 
  function __construct($it) { 
    parent::__construct($it, self::LEAVES_ONLY); 
    }

  function current() {
    return "<td>" . parent::current(). "</td>";
    }

  function beginChildren() { 
    echo "<tr class='table table-hover'>"; 
    } 

  function endChildren() { 
    echo "</tr>" . "\n";
   } 
} 

$servername = "mysql5013.hostbuddy.com";
$username = "*****_crb";
$password = "*****";
$dbname = "db_*****_crb";

try { 
//data from client table
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, 
$password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $conn->prepare("SELECT cli_company_name, cli_contact_person, 
       cli_address, cli_contactno, cli_email FROM client WHERE status=1 "); 
$stmt->execute();

// set the resulting array to associative
$result = $stmt->setFetchMode(PDO::FETCH_ASSOC); 

//data from useraccounts table
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt2 = $conn->prepare("SELECT username, user_fname, user_lname, user_bdate 
           FROM useraccounts WHERE status=1 AND 
company_name='".$result['cli_company_name']."' "); 
$stmt2->execute();

// set the resulting array to associative
$result2 = $stmt2->setFetchMode(PDO::FETCH_ASSOC); 

foreach(new TableRows(new RecursiveArrayIterator($stmt->fetchAll())) as 
$k=>$v) { 
    echo $v;
}

 foreach(new TableRows(new RecursiveArrayIterator($stmt2->fetchAll())) as 
$l=>$w) { 
    echo $w;
}
}
catch(PDOException $e) {
echo "Error: " . $e->getMessage();
}
$conn = null;
echo "</table>";
?> 

1 个答案:

答案 0 :(得分:0)

问题中共享的表结构不显示2个表之间的关系。您可以使用JOIN查询从2个表中获取数据,但是您需要在表之间建立关系才能加入它们。以下是可以使用的查询。

select  c.cli_company_name, 
        c.cli_contact_person, 
        c.cli_address, 
        c.cli_contact_no, 
        c.cli_email,
        ua.user_bdate,
        ua.user_mobilenum, 
        ua.username, 
        ua.user_fname, 
        ua.user_lname 
from    client c
join    useraccounts ua
on      c.<some field> = ua.<matching field>
where   ....

在此查询中,<some field><matching field>指定有助于加入表的关系(可能是另一个表中的一个表的PK为FK)。此外,如果需要,您还可以附加WHERE子句来过滤数据。

虽然这不能为您的问题提供完整的答案,但它可以帮助您提供适当的指导以继续前进。