我创建了一个用HTML创建6个表的循环,我想让它从我的数据库中填充一些约会。
以下是代码:
require_once 'class_php/Patient.php';
$patient = new Patient();
$patient->Connexion();
$datedujour = date("Y/m/d");
$demain = date("Y/m/d", strtotime("+7 day", strtotime($datedujour)));
$requete = "SELECT heuredebut , jour FROM dispo_base";
$resultat = $patient->LectureSql($requete);
$ligne = $resultat->fetch();
$nbtab = 5;
$h = 0;
while ($h <= $nbtab) {
echo"<table style='display: inline-table'>";
if ($ligne['day'] = 1) {
echo"<tr>";
echo "<th>Monday</th>";
echo"</tr>";
} elseif ($ligne['day'] = 2) {
echo"<tr>";
echo "<th>tuesday</th>";
echo"</tr>";
} elseif ($ligne['day'] = 3) {
echo"<tr>";
echo "<th>wednesday</th>";
echo"</tr>";
}
while ($ligne = $resultat->fetch()) {
echo"<tr>";
echo"<td><a>";
echo $ligne['heuredebut'];
echo"</a></td>";
echo"</tr>";
}
echo "</table>";
$h++;
}
我的循环工作并创建6个表。但是所有的表都是“星期一”的名称,当我尝试填充第二个时,它只填充一个表,我想用我的数据库中的所有记录填充它。
如何选择记录的位置?
谢谢你。
答案 0 :(得分:2)
这只是一个快速反应...
if ($ligne['day'] = 1) {
if ($ligne['day'] = 2) {
if ($ligne['day'] = 3) {
不应该
if ($ligne['day'] == 1) {
if ($ligne['day'] == 2) {
if ($ligne['day'] == 3) {
...