0

予約用のカレンダーが必要です。 私はこのカレンダーを作成しましたが、これは正しく機能しません例:http
: //bestinvest.ge/?view=10

誰かがカレンダーの予約を手伝ってくれますか?

カレンダーに3つのステータスが必要です

予約済み、保留中、無料

そして、[free] [res] [res] [res] [res] [free]の最初の無料をクリックし、最後の無料をクリックすると、JavaScriptでエラーが発生します。

「無料期間のみを選択する必要があります。選択した期間には予約日が含まれます。」

PHPファイルにエラーがあることはわかっていますが、次の場所が見つかりません。

function getmonthdays($m,$y) {
 return cal_days_in_month(CAL_GREGORIAN, $m, $y);
}

   <?php 
    for($i = 1; $i <= 31; $i++) {
        if($i <10) { $day = "0".$i; }else { $day = $i; }
    echo "<th>". $day . "</th>";
    } ?>
    </tr>
    <?php 
    $thismonth = date("m");
    $thisyear = date("Y");
    $nextyear = date("Y",strtotime("+1 year"));
    $countmonths = getmonthcount("$thismonth");
    $tdid=0;
    for($i = $thismonth; $i <= 12; $i++) {

    echo "<tr><td class='month'>". getmonth($i) ."</td>";
        for($x = 1; $x <= getmonthdays($i,$thisyear); $x++) {
            $tdid++;
        echo "<td id='cl". $tdid ."' class='". checkav($thisyear,$i,$x) ."' alt='$thisyear-". $i ."-". $x ."'></td>";
        }
    echo "</tr>";
    }
     ?>
4

1 に答える 1