0

我创建了一个循环以在 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 个表。但是表的所有名称都是“星期一”,当我尝试用第二个时间填充它时,它只填充一个表,我想用我的数据库中的所有记录填充它。

如何选择记录的去向?

谢谢。

4

1 回答 1

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) {

??

于 2013-10-09T14:59:30.163 回答