PHP 在一页上显示 2 个表

PHP To Show 2 Tables On One Page

我正在使用此语法在我的页面上显示 PHP Table。我现在需要在这个上面直接添加第二个 table,但是我尝试的所有语法都会抛出 500 错误。我如何通过 1 个连接到 MSSQL 运行 2 Select 语句并填充 2 个单独的 html tables?

    $option = array();
$option['driver'] = 'mssql';
$option['host'] = 'IP Address';
$option['user'] = 'UserName';
$option['password'] = 'Password';
$option['database'] = 'DB';
$option['prefix'] = '';
$db = JDatabase::getInstance($option);
$query = $db->getQuery(true);
$query = "SELECT name, hiredate, bday, payrate, hourlypay from HRData ORDER BY name ASC";
$db->setQuery($query);
$query = $db->loadObjectList();
if ($query) 
{
    ?>
    <table border="1">
    <thead>
    <tr>
    <th>Name </th>
    <th>Hire Date </th>
    <th>Birthday </th>
    <th>Pay Rate </th>
    <th>hourlypay </th>
    </tr>
    </thead>
    <?php
    foreach ($query as $res) 
    {
        print "<tr>";
        print "<td>" . $res->name . "</td>";
        print "<td>" . $res->hiredate . "</td>";
        print "<td>" . $res->bday . "</td>";
        print "<td>" . $res->payrate . "</td>";
        print "<td>" . $res->hourlypay . "</td>";
        print "</tr>";
    }
}

编辑
这是我尝试调整的语法,但我不断收到 500 错误

    $option = array();
$option['driver'] = 'mssql';
$option['host'] = 'IP Address';
$option['user'] = 'UserName';
$option['password'] = 'Password';
$option['database'] = 'DB';
$option['prefix'] = '';
$db = JDatabase::getInstance($option);
$query = $db->getQuery(true);
$query = "SELECT name, MAX(Pay) As PayYTD FROM HRINFO";
$db->setQuery($query);
$query = $db->loadObjectList();
if ($query) 
{
    ?>
    <table border="1">
    <thead>
    <tr>
    <th>Name </th>
    <th>YTD Pay </th>
    </tr>
    </thead>
    <?php
    foreach ($query as $res) 
    {
        print "<tr>";
        print "<td>" . $res->name . "</td>";
        print "<td>" . "$" . round($res->PayYTD) . "</td>";
        print "</tr>";
    }
}
<br><br><br>
//Query
$query = $db->getQuery(true);
$query = "SELECT name, hiredate, bday, payrate, hourlypay from HRData ORDER BY name ASC";
$db->setQuery($query);
$query = $db->loadObjectList();
if ($query) 
{
    ?>
    <table border="1">
    <thead>
    <tr>
    <th>Name </th>
    <th>Hire Date </th>
    <th>Birthday </th>
    <th>Pay Rate </th>
    <th>hourlypay </th>
    </tr>
    </thead>
    <?php
    foreach ($query as $res) 
    {
        print "<tr>";
        print "<td>" . $res->name . "</td>";
        print "<td>" . $res->hiredate . "</td>";
        print "<td>" . $res->bday . "</td>";
        print "<td>" . $res->payrate . "</td>";
        print "<td>" . $res->hourlypay . "</td>";
        print "</tr>";
    }
}

将输出放在一个变量中。

$StringOut = '';
$StringOut .=     '<table border="1">
    <thead>
    <tr>
    <th>Name </th>
    <th>Hire Date </th>
    <th>Birthday </th>
    <th>Pay Rate </th>
    <th>hourlypay </th>
    </tr>
    </thead>';

    foreach ($query as $res) 
    {
        $StringOut .=  "<tr>";
        $StringOut .=  "<td>" . $res->name . "</td>";
        $StringOut .=  "<td>" . $res->hiredate . "</td>";
        $StringOut .=  "<td>" . $res->bday . "</td>";
        $StringOut .=  "<td>" . $res->payrate . "</td>";
        $StringOut .=  "<td>" . $res->hourlypay . "</td>";
        $StringOut .=  "</tr>";
        }
$StringOut .=     '</table>';
#Do other logic to retrieve first table. 
#You could put it in a different variable if you like. And print when and whereever you wish.

echo $StringOut;
#Optionally close connection, done.

您遇到的问题是调用方式不正确。

$query = $db->getQuery(true);
$query = "SELECT name, MAX(Pay) As PayYTD FROM HRINFO";
$db->setQuery($query);

第一行将创建一个对象,这无关紧要。该对象将在 $query 中。

第二行会立即销毁该对象并将一个字符串分配给$query(这是不正确的)。

第三行期望一个对象作为setQuery的参数,可惜是字符串!错误。

如果你想让它正常工作,那么你需要正确使用 $query 中的对象。

我不是 Joomla 专家,所以我 link 为您提供了如何正确执行此操作的页面:https://docs.joomla.org/Selecting_data_using_JDatabase