「1月の予定」の版間の差分
83行目: | 83行目: | ||
print(">次の月へ</a>"); | print(">次の月へ</a>"); | ||
print("</form>"); | print("</form>"); | ||
+ | print $PHP_SELF; | ||
</php> | </php> |
2007年12月23日 (日) 14:02時点における版
<php> include_once("./includes/rokuyou.inc");
print("<form method=post action="); print $PHP_SELF; print(">");
if(isset($_GET['num'])){ $dteDate=mktime(0,0,0,date("m")+$_GET['num'],1,date("Y")); $num=$_GET['num']; }else{ $dteDate=mktime(0,0,0,date("1"),1,date("2008")); $num=0; } $intFirst=(int)date("w",$dteDate); $intLast=(int)date("t",$dteDate);
print("");
print(date("Y 年 m 月",$dteDate)."の予定");
print("");
print("
");
日 | 月 | 火 | 水 | 木 | 金 | 土 | "); print("
---|---|---|---|---|---|---|
"); }else{ print(" | ");
} }elseif($i % 7==1){ if($dteTmp == date("Y-m-d")){ print(" | "); }else{ print(" | ");
} }else{ if($dteTmp == date("Y-m-d")){ print(" | "); }else{ print(" | ");
} } print($intDay);
if (get_rokuyou(date("Y",$dteDate),date("m",$dteDate),$intDay) == 3) {
print ("友引");
}
print(" $rs=mysql_query("SELECT pname FROM pok_yotei_tab where pdate = '$dteTmp' order by btime",$db);
if(mysql_num_rows($rs)>0){
while($aryCol=mysql_fetch_array($rs,MYSQL_ASSOC)){
$yotei=($aryCol[pname]);
print("・$yotei</a> } mysql_free_result($rs); } print(" | ");
if($i % 7==0){print("|
print("<a href=./"); print $PHP_SELF; print ("?num="); print($num-1); print(">前の月へ</a>"); print("<a href=./family:month?num="); print($num+1); print(">次の月へ</a>"); print("</form>"); print $PHP_SELF; </php>