简体   繁体   中英

display a simple calendar in php

I've got a table with dates & days of the week, eg: 2012-05-01, Tuesday 2012-05-02, Wednesday etc.

I'm trying to display it in a calendar like table. The problem is that for each day it is displaying it in a different row.

$date4 = date("Y-m-d");
$date3 = date('Y-m-d',strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))));


    $sql3 = "SELECT * FROM trn_cal WHERE dat >= '$date4' AND dat <= '$date3'";
    $res3 = mysql_query($sql3);
    echo "<table width='700px' border='1'>";
    echo "  <tr>";
    echo "      <td width='100px'>Sunday</td>";
    echo "      <td width='100px'>Monday</td>";
    echo "      <td width='100px'>Tuesday</td>";
    echo "      <td width='100px'>Wednesday</td>";
    echo "      <td width='100px'>Thursday</td>";
    echo "      <td width='100px'>Friday</td>";
    echo "      <td width='100px'>Saturday</td>";
    echo "  </tr>";
    echo "</table>";

    echo "<table width='700px' border='1'>";
    while ($row3 = mysql_fetch_assoc($res3)) {
    $weekday = $row3['weekday'];
    $weekdate = $row3['weekdate'];
    echo "  <tr>";
    echo "      <td width='100px'>";
    if ($weekday == "Sunday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Monday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Tuesday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Wednesday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Thursday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Friday") {
    echo $weekdate;
    }
    echo "</td>";
    echo "      <td width='100px'>";
    if ($weekday == "Saturday") {
    echo $weekdate;
    } 
    echo "</td>";
    echo "  </tr>";
    }
    echo "</table>";

Try this:

$date4 = date("Y-m-d");
$date3 = date('Y-m-d',strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))));

$sql3 = "SELECT * FROM trn_cal WHERE dat >= '$date4' AND dat <= '$date3'";
$res3 = mysql_query($sql3);

echo "<table width='700px' border='1'>";

echo "  <tr>";
echo "      <td width='100px'>Sunday</td>";
echo "      <td width='100px'>Monday</td>";
echo "      <td width='100px'>Tuesday</td>";
echo "      <td width='100px'>Wednesday</td>";
echo "      <td width='100px'>Thursday</td>";
echo "      <td width='100px'>Friday</td>";
echo "      <td width='100px'>Saturday</td>";
echo "  </tr>";

echo "  <tr>";
$results_count = mysql_num_rows($res3);
$i = 1;
while ($row3 = mysql_fetch_assoc($res3)) {
    $weekday = $row3['weekday'];
    $weekdate = $row3['weekdate'];
    echo "      <td width='100px'>" . $weekdate . "</td>";
    if ($weekday == "Sunday") {
        echo "  </tr>";
        if($i < $results_count) echo "  <tr>";
    }
    $i++;
}

echo "</table>";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM