|
|
|
เรื่องตารางปิฏิทินครับ ผมต้องการทำ ปฏิทินเหตการ แต่อยากจะคลี่ปฏิทินออกให้ยาวน่ะครับ ไม่ต้องการให้เป็นตาราง |
|
|
|
|
|
|
|
ผมต้องการทำ ปฏิทินเหตการ แต่อยากจะคลี่ปฏิทินออกให้ยาวน่ะครับ ไม่ต้องการให้เป็นตาราง ต้องแก้ยังไงครับ
ของเก่า
require_once('include/connect.php');
$query_rsCal = "select start,end from calendar ";
$rsCal = mysql_query($query_rsCal) or die(mysql_error());
$row_rsCal = mysql_fetch_assoc($rsCal);
//เอาวันเริ่มและสิ้นสุดมาเก็บใน array เพื่อใช้ในการเปรียบเทียบ
$st=array();$ed=array();
$i=0;
do{
$st[$i]=$row_rsCal['start'];
$ed[$i]=$row_rsCal['end'];
$i++;} while ($row_rsCal = mysql_fetch_assoc($rsCal));
for($i=0;$i<count($st);$i++)
{
$ed[$i]=substr($ed[$i],0,4).substr($ed[$i],5,2).substr($ed[$i],8,2);
$st[$i]=substr($st[$i],0,4).substr($st[$i],5,2).substr($st[$i],8,2);
}
if ( ( $cal_year == $cur_year ) && ( $cal_month == $cur_month ) )
{
$today_day = $cur_day;
} else $today_day = 0;
//จำนวนวันในเดือนที่แล้ว จำนวนวันในเดือนนี้ หาค่าวันที่ 1 ของเดือนแบบสัปดาห์
$days_last_month = num_days( $cal_prev_year, $cal_prev_month );
$days_this_month = num_days( $cal_year, $cal_month );
$first_day_pos = date( "w", mktime( 0,0,0,$cal_month,1,$cal_year) );
//เปลี่ยนค่าที่ได้ถ้าเป็นวันอาทิตย์ให้เท่ากับ 7 แทน Mo=1 to Su=7
if ( $first_day_pos == 0 ) $first_day_pos = 7;
$day_num= $days_last_month - ($first_day_pos-2);
$class="last_month";
$p=array();
for ( $y=1; $y<=6; $y++ )
{
echo "<tr>";
for ( $x=1; $x<=7; $x++ )
{
if ( ($y==1) && ($x==$first_day_pos) )
{
$day_num = 1; $class="";
}
if ( ($y >1) && ($day_num>$days_this_month) )
{
$day_num = 1; $class="next_month";
}
if ( ($class=="") && ($day_num == $today_day) )
{
$id="today";
} else $id="";
if ( $class == "" ){
if($cal_month<=9)
$mm="0".$cal_month;
else $mm=$cal_month;
if($day_num<=9)
$dd="0".$day_num;
else $dd=$day_num;
$times=$cal_year."-".$mm."-".$dd;
}
$cur_day=$cal_year.$mm.$dd;
for($i=0;$i<count($st);$i++){
if(($cur_day>=$st[$i])&&($cur_day<=$ed[$i])){
$p[$day_num]=1;
}
}
if($p[$day_num]==1&&$class==""){
?>
<td class="<? echo $class; ?>" id="<? echo $id; ?>" bgcolor=#FFCC33><div align="center"><span class="style5"><a href="#" onClick="MM_openBrWindow('calendar_report.php?calendarcheck=1&now_stamp=<? echo $times; ?>','','scrollbars=yes,width=520,height=260')"><? echo $day_num; ?></a></span></div></td>
<?
}else{ echo "<td class='".$class."' id='".$id."' bgcolor=#E9E9E9><div align='center'>".$day_num."</div></td>";
}
$day_num++;
}
echo "</tr>";
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
31 ต.ค. 2551 11:19:53 |
By :
nongjen |
View :
1300 |
Reply :
0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|