0

请先阅读编辑2,谢谢!

我一直在处理一个名为“inoffice.php”的页面,该页面显示学生等待被看到,目前正在被看到的页面视图如下:

inoffice.php的页面视图

现在几乎我刚刚使用上面的同一张表来获取第二张表,但是我添加了一个左连接,以便显示与学生一起工作的辅导员(在本例中为 Dawne)以及学生被辅导员接受的时间.

该项目的那部分非常困难,但我仍然能够度过难关。现在对我来说困难的部分是这个(这也是我的问题):

1)我怎样才能让被看见的桌子(正在等待的第二张桌子)是空的,除非辅导员(或工作人员)点击按钮“开始会话”(不是一个 php 会话,而是一个实际的现实生活中的会议学生和辅导员之间)

2)一旦辅导员(工作人员)点击“开始会议”按钮,我怎样才能使第一张桌子(等待)失去一个条目。

我的数据库架构如下:

  1. 用户 - 持有员工凭证
  2. Waiting - 包含 ID(PK)、anum(这是一个学生 ID 号)、first、last、why、comments、signintime
  3. 辅导员 - 这包含 ID(PK 和 FK 等待在加入中使用)、辅导员姓名、辅导员开始时间
  4. 评论 - ID(等待中的 PK 和 FK),评论(对于辅导员评论,大约 varchar 50)
  5. 完成 - ID(等待中的 PK 和 FK),以及辅导员与学生结束时的时间戳

因此,希望通过我提供的信息,有人可以详细说明我应该如何/是否应该使用触发器或事务来完成此操作。或者,如果它是 PHP 的“东西”——因为没有更好的词。

谢谢你,愤怒

编辑 2:删除旧的不工作代码,用新代码更新帖子并删除过时的屏幕截图!包括更新的一个!:

<php
require('core/init.php');

    if(!isset($_SESSION['LoggedIn'])){
        die("You must <a href='index.php'><bold>login</bold></a> before you can see that page!");
    }

//Begin the select statements
try 
    {
$query = $dbh->prepare("SELECT * FROM waiting WHERE counselorname IS NULL ");
$query->bindParam(':null', $null);
$query->execute();
$result = $query->fetchall();
    }
        catch (PDOException $e) {
        error_log($e->getMessage());
        die($e->getMessage());
        }


    echo "Return to <a href='login_success.php'><bold>Home Page</bold></a>";

echo "<br />";
echo "Waiting";

echo 
    "<table border='2'>
    <tr>
    <th>ID</th>
    <th>A Number</th>
    <th>First Name</th>
    <th>Last Name</th>
    <th>Why</th>
    <th>Comments</th>
    <th>Signintime</th>
    <th>Staff Member</th>
    <th>Click if ready!</th>
    </tr>"
    ;

    foreach($result as $row)
    {
  echo "<tr>";
  echo "<td>" . $row['id'] . "</td>";
  echo "<td><a href=Student.php?student=" . $row['anum'] . ">" .$row['anum'] . " </a></td>";
  echo "<td>" . $row['first'] . "</td>";
  echo "<td>" . $row['last'] . "</td>";
  echo "<td>" . $row['why'] . "</td>";  
  echo "<td>" . $row['comments'] . "</td>";
  echo "<td>" . $row['signintime'] . "</td>";
  echo "
        <td>    <form action='counselor.php?id=" . $row['id'] . "' method='post' target='_new'>
                    <select name='namedrop'>
                        <option value=''>Counselor Name</option> 
                        <option value='Admin-John'>Admin - John</option>
                        <option value='Admin-Christine'>Admin - Christine</option>
                        <option value='Admin-Dawne'>Admin - Dawne</option>
                        <option value='Counselor-Cherie'>Counselor - Cherie</option>
                        <option value='Counselor-Tootie'>Counselor - Tootie</option>
                        <option value='Counselor-Debbie'>Counselor - Debbi</option>
                        <option value='FrontDesk-Delores'>Front Desk - Delores</option>
                        <option value='FrontDesk-Kiana'>Front Desk - Kiana</option>
                    </select>
            </td>

            <td> <input type='submit' name='submit' value='Start Session'></td>
            </form> </td>";
}

  echo "</tr>";
  echo "</table>";

echo "<br />";
echo "<br />";


try 
    {
    $query2 = $dbh->prepare("SELECT * FROM waiting WHERE counselorname is NOT NULL");
    $query2->execute();
    $result2 = $query2->fetchall();
    }
        catch (PDOException $e) {
        error_log($e->getMessage());
        die($e->getMessage());
        }


echo "Return to <a href='login_success.php'><bold>Home Page</bold></a>";

echo "<br />";
echo "Being seen";

echo 
    "<table border='2'>
    <tr>
    <th>ID</th>
    <th>A Number</th>
    <th>First Name</th>
    <th>Last Name</th>
    <th>Why</th>
    <th>Comments</th>
    <th>Signintime</th>
    <th>Staff Member</th>
    <th>Counselor Start Time</th>
    </tr>"
    ;

    foreach($result2 as $row2)
    {
  echo "<tr>";
  echo "<td>" . $row2['id'] . "</td>";
  echo "<td><a href=Student.php?student=" . $row2['anum'] . ">" .$row2['anum'] . " </a></td>";
  echo "<td>" . $row2['first'] . "</td>";
  echo "<td>" . $row2['last'] . "</td>";
  echo "<td>" . $row2['why'] . "</td>"; 
  echo "<td>" . $row2['comments'] . "</td>";
  echo "<td>" . $row2['signintime'] . "</td>";
  echo "<td>" . $row2['counselorname'] . "</td>";
  echo "<td>" . $row2['counselor_time'] . "</td>";
}


?> 

新预览

4

1 回答 1

2

两个呈现的 HTML 表应该有一个 SQL 表(具有任何规范化的依赖项) 。

即使显示的HTML 表格代表相同信息不同视图。

现在,发布的模式大多允许这样做,但有一个问题使它无法实现:

辅导员表包含的信息 ( start time) 不是功能依赖——也就是说,它与“成为辅导员”无关!这会导致两个问题:

  1. 辅导员可能只有一个start time,并且;
  2. 不可能代表start time所有事件。

解决方法是将该start time列从“辅导员”表中移出,并将其放入“时间表”表中,因为start time(就像finish时间一样)取决于特定的日程安排。


1)我怎样才能让被看见的桌子(正在等待的第二张桌子)是空的,除非辅导员(或工作人员)点击按钮“开始会话”(不是一个 php 会话,而是一个实际的现实生活中的会议学生和辅导员之间)

查询(查看信息):

select * from Schedules
where startTime not null   -- only show started events

2)一旦辅导员(工作人员)点击“开始会议”按钮,我怎样才能使第一张桌子(等待)失去一个条目。

查询(查看信息):

select * from Schedules
where startTime is null    -- it does not 'lose' item, but it is not shown

否则,如果坚持使用单独的表,您将不得不记账:每次手动插入/删除或设置触发器来做同样的事情。这增加了额外的工作,可能不需要。

于 2013-01-02T18:49:41.607 回答