|
|
|
รบกวนพี่ ๆ ดูให้โค้ดให้ผมสักแปปนึง อาจจะเป็นอาราย งง ๆ |
|
|
|
|
|
|
|
พอดีนั่งหัดเขียนปฏิทินกิจกรรม แต่ปัญหามันมีอยู่ว่าตอนแสดงผลมันเป็นแบบนี้ครับ
คือไอ้แท็ก <r> มันมาจากไหนก็ไม่รู้ครับ งง ๆ เหมือนกัน หาไม่เจอครับ
โค้ดมีแค่นี้ครับ
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Event Calendar</title>
<script type="text/javascript">
function goLastMonth(month,year){
if(month==1){
--year;
month==12 ;
}
document.location.href="<?php $_SERVER['PHP_SELF']; ?>?month=+"month+"&year="+year;
}
function goNextMonth(month,year){
if(month==12){
++year;
month==0 ;
}
document.location.href="<?php $_SERVER['PHP_SELF']; ?>?month=+"(month+1)+"&year="+year;
}
</script>
</head>
<body>
<?php
//============================
if(isset($GET['day'])){
$day=$_GET['day'];
}else{
$day = date ("j");
}
if(isset($GET['month'])){
$month = $_GET['month'];
}else{
$month = date ("n");
}
if(isset($GET['year'])){
$year = $_GET['year'];
}else{
$year = date ("Y");
}
//============================
//echo $day."/".$month."/".$year ;
//ประกาศตัวแปร
$currentTimeStamp = strtotime("$year-$month-$day");
$monthName = date("F",$currentTimeStamp);
$numDays = date("t",$currentTimeStamp); // วัน/เวลาปัจจุบัน
$counter=0;
?>
<table border="1">
<tr>
<td><input type="button" value="<" name="previousbutton" onClick="goLastMonth(<?php echo $month.",".$year ?>);"></td>
<td colspan="5" align="center"><?php echo $monthName." , ".$year; ?></td>
<td><input type="button" value=">" name="nextbutton" onclick="goNextMonth(<?php echo $month.",".$year ?>);"></td>
</tr>
<tr>
<td width="50px">อา.</td>
<td width="50px">จ.</td>
<td width="50px">อ.</td>
<td width="50px">พ.</td>
<td width="50px">พฤ.</td>
<td width="50px">ศ.</td>
<td width="50px">ส.</td>
</tr>
<?php
echo "<tr>";
for($i=1;$i<$numDays+1;$i++,$counter++)
{
$timeStamp = strtotime("$year-$month-$i");
if($i==1){
$firstDay = date("w", $timeStamp);
for($j=0;$j < $firstDay;$j++,$counter++)
{
//blank space
echo"<td> </td>";
}
}
if($counter%7==0)
{ echo"<\tr><tr>";
}
echo"<td align='center'> $i </td>";
}
echo "</tr>";
?>
</table>
</body>
</html>
Tag : PHP, MySQL, jQuery
|
ประวัติการแก้ไข 2011-01-06 09:26:14 2011-01-06 09:33:53
|
|
|
|
|
Date :
2011-01-06 09:24:52 |
By :
Chaan |
View :
917 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<\tr> แก้เป็น </tr>
|
|
|
|
|
Date :
2011-01-06 09:36:12 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ xbeginner01 มากเลยครับ หาอยู่ตั้งนาน
|
|
|
|
|
Date :
2011-01-06 09:44:22 |
By :
Chaan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|