我需要过滤医生的日期(curdate)和id来查看每个医生的日期(每个医生只需要查看他/她每天的唯一日期..
如果我不把它,id_doctor = GET['id_doctor']
放在 where 子句中,我有这个代码可以工作
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th>Fecha</th>
<th>Hora</th>
<th>Nombre de Paciente</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<? $sql = "SELECT * FROM CITAS WHERE f_cita = CURDATE(),id_doctor = GET['id_doctor'] ORDER BY f_cita, h_cita ASC";
$result = $conn->query($sql);
while($row = $result->fetch(PDO::FETCH_ASSOC)) {
?>
<tr>
<td><
? echo $row['f_cita'] ?></td>
<td><? echo $row['h_cita'] ?></td>
<td><? echo $row['nombrep'] ?></td>
<td><a class="btn btn-success" href=paciente_personal_profile.php?id_paciente=<? echo $row['id_paciente']; ?>>
<i class="icon-user icon-white"></i> Ver Perfil</a>
</td>
</tr><? } ?>
</tbody>
</table>
我在 CITAS 表中有这个 FK(id_paciente 和 id_doctor),但我需要当“x”id_doctor 登录系统时,他/她只能看到他/她的日期......
你能帮我解决这个问题吗?
此致!