请先阅读编辑2,谢谢!
我一直在处理一个名为“inoffice.php”的页面,该页面显示学生等待被看到,目前正在被看到的页面视图如下:
现在几乎我刚刚使用上面的同一张表来获取第二张表,但是我添加了一个左连接,以便显示与学生一起工作的辅导员(在本例中为 Dawne)以及学生被辅导员接受的时间.
该项目的那部分非常困难,但我仍然能够度过难关。现在对我来说困难的部分是这个(这也是我的问题):
1)我怎样才能让被看见的桌子(正在等待的第二张桌子)是空的,除非辅导员(或工作人员)点击按钮“开始会话”(不是一个 php 会话,而是一个实际的现实生活中的会议学生和辅导员之间)
2)一旦辅导员(工作人员)点击“开始会议”按钮,我怎样才能使第一张桌子(等待)失去一个条目。
我的数据库架构如下:
- 用户 - 持有员工凭证
- Waiting - 包含 ID(PK)、anum(这是一个学生 ID 号)、first、last、why、comments、signintime
- 辅导员 - 这包含 ID(PK 和 FK 等待在加入中使用)、辅导员姓名、辅导员开始时间
- 评论 - ID(等待中的 PK 和 FK),评论(对于辅导员评论,大约 varchar 50)
- 完成 - 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>";
}
?>