|
|
|
สอบถามหน่อยครับ ปฎิทินของผม ไม่สามารถเลือนไปดูเดือนอื่นได้ครับ |
|
|
|
|
|
|
|
ตามหัวข้อเรื่องเลยครับ
ส่วนของ code
Code
<?
if($day < 1)
{
$day = date("j"); //กำหนดตัวแปร $day เก็บค่าวันที่ 1 - 31 ไม่มี 0 นำหน้า
}
if($months<1)
{
$months = date("m"); //กำหนดตัวแปร $months เก็บค่าเดือน 1 - 12
}
else if($months == 0)
{
$year--;
$months=12;
}
else if($months == 13)
{
$year++;
$months=1;
}
if($year < 1)
{
$year = date("Y");
$yearthai = $year + 543;
$thaimonth=array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม", "พฤศจิกายน","ธันวาคม");
$currentTimeStamp = strtotime("$year-$months-$day"); //function strtotime จะ return ค่า timestamp ของวันเวลา
//รูปแบบของ string ที่เป็นพารามิเตอร์
$monthsName = date("F", $currentTimeStamp); //กำหนดตัวแปร $monthsName เก็บชื่อเดือนของแต่ละเดือน
$numDays = date("t", $currentTimeStamp); //กำหนดตัวแปร $numDays จำนวนวันใน 1 เดือน
$counter = 0;
}
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right"><div align="left">
<a href='index2.php?module=index&action=home&months='$months-1 >เดือนก่อน</a>
</div></td>
<td height="25"><div align="center"><strong><font size="2">
วันที่ <? echo $day;?> เดือน <? echo $thaimonth[$months-1];?> พ.ศ. <? echo $yearthai;?></font></strong></div></td>
<td>
<div align="right">
<a href='index2.php?module=index&action=home&months='$months+1 >เดือนหน้า</a>
</div></td>
</tr>
<tr>
<td colspan="3" align="center"><table width='100%' border='0' cellpadding='3' cellspacing='1' bgcolor="#B3B366" >
<tr>
<td align="center" bgcolor="#D8D8AF"><strong><font size="2">อาทิตย์</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">จันทร์</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">อังคาร</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">พุธ</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">พฤหัสบดี</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">ศุกร์</font></strong></td>
<td width="15%" align="center" bgcolor="#D8D8AF"><strong><font size="2">เสาร์</font></strong></td>
</tr>
<tr>
<?php
for($i = 1; $i <= $numDays; $i++,$counter++)
{
$have = 0;
$meetcolor = "";
$timeStamp = strtotime("$year-$months-$i");
if($i == 1)
{
// Workout when the first day of the month is
$firstDay = date("w", $timeStamp);
for($j = 0; $j < $firstDay; $j++,$counter++)
{
echo "<td height=\"30\"> </td>";
}
}
if($counter % 7 == 0)
{
if($i == $day)
{
$class = "class='today'";
}
else
{
$class = "class='weekend'";
echo "</tr><tr>";
}
}
else
{
if($i == $day)
{
$class = "class='today'";
}
else
{
$class = "class='normal'";
}
}
$dynow = $year."-".get_number($months,2)."-".get_number($i,2);
$danow = date("Y")."-".get_number(date("m"),2)."-".get_number(date("d"),2);
if($dynow==$danow) { $dyd = "<label style=\"font-size:14px;\"><b>$i</b></label> <font color=\"red\">(วันนี้)</font>"; } else { $dyd = $i; }
echo "<td height=\"30\" valign=\"top\" bgcolor=\"#FFFFFF\" onMouseOver=\"this.bgColor='#FFD9D9'\" onMouseOut=\"this.bgColor='#FFFFFF'\" style=\"cursor:pointer\" onClick=\"dozone('index2.php?module=calendar&action=time_date&w=".$w."&act=getdate&months=".get_number($months,2)."&day=".get_number($i,2)."&year=".$year."','detail');\"><div style=\"font-size:11px;\">".$dyd."</div>";
//echo "ใส่อะไรไม่รู้";
echo "</td>";
}
$over = 7-(($numDays+$firstDay)%7);
if($over == 7) {
$over = 0;
}
for($j = 0; $j < $over; $j++, $counter++)
echo "<td> </td>";
echo "</tr>";
?>
</tr>
</table> </td>
</tr>
</table></td>
</tr>
</table>
Tag : PHP
|
|
|
|
|
|
Date :
2016-08-01 09:14:15 |
By :
nick02121 |
View :
725 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูพวกการอ่านค่า $_GET ด้วยนะครับ มันน่าจะอ่านไม่ได้หรือเปล่าครับ
|
|
|
|
|
Date :
2016-08-03 10:12:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|