본문
이번달 달력(양력)을 표시하는 소스입니다. 조금만 응용하면 여러가지 모양이 나올 수 있겠죠!
<?php
// 지정한 년,월의 총 일수를 구한다.
function cal_days_in_month($month, $year) {
return $month == 2 ? ($year % 4 ? 28 : ($year % 100 ? 29 : ($year % 400 ? 28 : 29))) : (($month - 1) % 7 % 2 ? 30 : 31);
}
?>
<?php
$date_month = date("m"); //오늘이 속한 월(1,2,3...12)
$date_year = date("Y"); //오늘이 속한 년(...2003,2004,2005...)
$t_days = cal_days_in_month($date_month, $date_year); //지정한 년,월의 총 일수(28,29,30,31)
$day = date("w", mktime(0, 0, 0, $date_month, 1, $date_year)); //0(일요일)부터 6(토요일)
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>달력</title>
<style type=text/css>
td { font-size:12px; font-family:돋움체; color:#7D7D7D; line-height:1.2; }
th { font-size:13px; font-family:돋움체; color:#000000; line-height:1.5; }
.today { font-size:12px; font-family:돋움체; color:#000000; background:#C4E1FF line-height:1.2; }
</style>
</head>
<body bgcolor=#FFFFFF>
<table border="0" bgcolor="#F2F2F2" cellpadding="2" cellspacing="2">
<tr><th colspan="7"><?php echo $date_year."년 ".$date_month."월"; ?></th></tr>
<tr bgcolor="#C0C0C0"><th><font color="#FF0000">일</font></th><th>월</th><th>화</th><th>수</th>
<th>목</th><th>금</th><th><font color="#0000FF">토</font></th></tr>
<?php
for ($i = 0; $i <= $t_days; $i++) {
if ($day > 6) {
echo "</tr>\n<tr>\n";
$day = 0;
}
if ($i == date("j")) { ?>
<td align="right" class="today"><?php echo $i; $day++; echo "</td>\n";
}
else if ($i > 0) { ?>
<td align="right"><?php echo $i; $day++; echo "</td>\n";
}
else if ($day > 0) { ?>
<tr><td colspan="<?php echo $day; ?>"><?php echo "</td>\n";
}
if ($i == $t_days && $day < 6) { ?>
<td colspan="<?php echo 7 - $day; ?>"><?php echo "</td>\n</tr>\n";
}
}
?>
</table>
</body>
</html><
<?php
// 지정한 년,월의 총 일수를 구한다.
function cal_days_in_month($month, $year) {
return $month == 2 ? ($year % 4 ? 28 : ($year % 100 ? 29 : ($year % 400 ? 28 : 29))) : (($month - 1) % 7 % 2 ? 30 : 31);
}
?>
<?php
$date_month = date("m"); //오늘이 속한 월(1,2,3...12)
$date_year = date("Y"); //오늘이 속한 년(...2003,2004,2005...)
$t_days = cal_days_in_month($date_month, $date_year); //지정한 년,월의 총 일수(28,29,30,31)
$day = date("w", mktime(0, 0, 0, $date_month, 1, $date_year)); //0(일요일)부터 6(토요일)
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>달력</title>
<style type=text/css>
td { font-size:12px; font-family:돋움체; color:#7D7D7D; line-height:1.2; }
th { font-size:13px; font-family:돋움체; color:#000000; line-height:1.5; }
.today { font-size:12px; font-family:돋움체; color:#000000; background:#C4E1FF line-height:1.2; }
</style>
</head>
<body bgcolor=#FFFFFF>
<table border="0" bgcolor="#F2F2F2" cellpadding="2" cellspacing="2">
<tr><th colspan="7"><?php echo $date_year."년 ".$date_month."월"; ?></th></tr>
<tr bgcolor="#C0C0C0"><th><font color="#FF0000">일</font></th><th>월</th><th>화</th><th>수</th>
<th>목</th><th>금</th><th><font color="#0000FF">토</font></th></tr>
<?php
for ($i = 0; $i <= $t_days; $i++) {
if ($day > 6) {
echo "</tr>\n<tr>\n";
$day = 0;
}
if ($i == date("j")) { ?>
<td align="right" class="today"><?php echo $i; $day++; echo "</td>\n";
}
else if ($i > 0) { ?>
<td align="right"><?php echo $i; $day++; echo "</td>\n";
}
else if ($day > 0) { ?>
<tr><td colspan="<?php echo $day; ?>"><?php echo "</td>\n";
}
if ($i == $t_days && $day < 6) { ?>
<td colspan="<?php echo 7 - $day; ?>"><?php echo "</td>\n</tr>\n";
}
}
?>
</table>
</body>
</html><
첨부파일
달력.txt (1.9 KB, 28회)댓글 4개
천재조상훈
12년 전
감사요
12년 전
감사
12년 전
감사
12년 전
감사합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 49 | ||
| 8229 | 9년 전 | 52 | ||
| 8228 |
커네드커네드
|
9년 전 | 96 | |
| 8227 | 9년 전 | 108 | ||
| 8226 | 9년 전 | 144 | ||
| 8225 | 9년 전 | 132 | ||
| 8224 | 9년 전 | 130 | ||
| 8223 | 9년 전 | 89 | ||
| 8222 |
|
9년 전 | 162 | |
| 8221 | 9년 전 | 77 | ||
| 8220 | 9년 전 | 74 | ||
| 8219 | 9년 전 | 80 | ||
| 8218 | 9년 전 | 111 | ||
| 8217 |
star3840
|
9년 전 | 98 | |
| 8216 | 9년 전 | 135 | ||
| 8215 | 9년 전 | 88 | ||
| 8214 | 9년 전 | 205 | ||
| 8213 | 9년 전 | 142 | ||
| 8212 | 9년 전 | 56 | ||
| 8211 | 9년 전 | 222 | ||
| 8210 | 9년 전 | 217 | ||
| 8209 | 9년 전 | 318 | ||
| 8208 | 9년 전 | 187 | ||
| 8207 | 9년 전 | 198 | ||
| 8206 |
|
9년 전 | 162 | |
| 8205 | 9년 전 | 146 | ||
| 8204 | 9년 전 | 109 | ||
| 8203 | 9년 전 | 203 | ||
| 8202 | 9년 전 | 126 | ||
| 8201 | 9년 전 | 165 | ||
| 8200 | 9년 전 | 135 | ||
| 8199 | 9년 전 | 182 | ||
| 8198 | 9년 전 | 155 | ||
| 8197 | 9년 전 | 135 | ||
| 8196 | 9년 전 | 514 | ||
| 8195 | 9년 전 | 133 | ||
| 8194 | 9년 전 | 267 | ||
| 8193 | 9년 전 | 134 | ||
| 8192 | 9년 전 | 163 | ||
| 8191 | 9년 전 | 115 | ||
| 8190 | 9년 전 | 109 | ||
| 8189 | 9년 전 | 165 | ||
| 8188 | 9년 전 | 110 | ||
| 8187 | 9년 전 | 120 | ||
| 8186 | 9년 전 | 130 | ||
| 8185 | 9년 전 | 291 | ||
| 8184 | 9년 전 | 86 | ||
| 8183 | 9년 전 | 308 | ||
| 8182 | 9년 전 | 137 | ||
| 8181 | 9년 전 | 114 | ||
| 8180 | 9년 전 | 678 | ||
| 8179 | 9년 전 | 474 | ||
| 8178 | 9년 전 | 278 | ||
| 8177 |
kiplayer
|
9년 전 | 284 | |
| 8176 | 9년 전 | 329 | ||
| 8175 | 9년 전 | 203 | ||
| 8174 | 9년 전 | 210 | ||
| 8173 | 9년 전 | 323 | ||
| 8172 | 9년 전 | 166 | ||
| 8171 | 9년 전 | 159 | ||
| 8170 | 9년 전 | 277 | ||
| 8169 |
커네드커네드
|
9년 전 | 243 | |
| 8168 | 9년 전 | 296 | ||
| 8167 | 9년 전 | 305 | ||
| 8166 | 9년 전 | 216 | ||
| 8165 | 9년 전 | 148 | ||
| 8164 | 9년 전 | 278 | ||
| 8163 | 9년 전 | 265 | ||
| 8162 | 9년 전 | 272 | ||
| 8161 | 9년 전 | 270 | ||
| 8160 |
|
9년 전 | 466 | |
| 8159 | 9년 전 | 385 | ||
| 8158 | 9년 전 | 204 | ||
| 8157 | 9년 전 | 339 | ||
| 8156 | 9년 전 | 255 | ||
| 8155 | 9년 전 | 231 | ||
| 8154 |
00년생용띠
|
9년 전 | 577 | |
| 8153 | 9년 전 | 205 | ||
| 8152 |
|
9년 전 | 384 | |
| 8151 | 9년 전 | 385 | ||
| 8150 | 9년 전 | 474 | ||
| 8149 |
Jangfolk
|
9년 전 | 313 | |
| 8148 | 9년 전 | 148 | ||
| 8147 | 9년 전 | 357 | ||
| 8146 | 9년 전 | 410 | ||
| 8145 | 9년 전 | 343 | ||
| 8144 | 9년 전 | 308 | ||
| 8143 | 9년 전 | 162 | ||
| 8142 | 9년 전 | 409 | ||
| 8141 | 9년 전 | 357 | ||
| 8140 | 9년 전 | 905 | ||
| 8139 | 9년 전 | 229 | ||
| 8138 |
전갈자리남자
|
9년 전 | 375 | |
| 8137 | 9년 전 | 355 | ||
| 8136 | 9년 전 | 717 | ||
| 8135 |
|
9년 전 | 769 | |
| 8134 |
PlayPixel
|
9년 전 | 480 | |
| 8133 |
|
9년 전 | 420 | |
| 8132 | 9년 전 | 430 | ||
| 8131 | 9년 전 | 786 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기