|
|
|
ติดปัญหาเรื่องปฏิทินกิจกรรมครับอยากใส่ linnk ลงไปบนวันที่ของแต่ละวันต้องทำยังไงครับ |
|
|
|
|
|
|
|
คือผมได้ code ปฏิทินกิจกรรมจากที่นี่มาครับคือผมอยากจะนำไปต่อยอดเป็นการทำปฏิทินที่เราสามารถคลิกไปที่วันที่นั้นๆ แล้วส่งค่าวันที่ ที่เราคลิกไปทาง url ครับเราจะใส่ link ตัวเลขของแต่ละวันยังไงหรอครับ รบกวนท่านพี่ทุกท่านช่วยชี้แนะผมด้วยนะครับ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ปฏิทินกิจกรรม</title>
</head>
<body>
<?
class Calendar
{
function getDayNames()
{
return $this->dayNames;
}
function setDayNames($names)
{
$this->dayNames = $names;
}
function getMonthNames()
{
return $this->monthNames;
}
function setMonthNames($names)
{
$this->monthNames = $names;
}
function getStartDay()
{
return $this->startDay;
}
function setStartDay($day)
{
$this->startDay = $day;
}
function getStartMonth()
{
return $this->startMonth;
}
function setStartMonth($month)
{
$this->startMonth = $month;
}
function getCalendarLink($month, $year)
{
return "";
}
function getCurrentMonthView()
{
$d = getdate(time());
return $this->getMonthView($d["mon"], $d["year"]);
}
function getCurrentYearView()
{
$d = getdate(time());
return $this->getYearView($d["year"]);
}
function getMonthView($month, $year)
{
return $this->getMonthHTML($month, $year);
}
function getYearView($year)
{
return $this->getYearHTML($year);
}
//เกี่ยวกับวันที่
function getDaysInMonth($month, $year)
{
if ($month < 1 || $month > 12)
{
return 0;
}
$d = $this->daysInMonth[$month - 1];
if ($month == 2)
{
if ($year%4 == 0)
{
if ($year%100 == 0)
{
if ($year%400 == 0)
{
$d = 29;
}
}
else
{
$d = 29;
}
}
}
return $d;
}
function getMonthHTML($m, $y, $showYear = 1)
{
$s = "";
$a = $this->adjustDate($m, $y);
$month = $a[0];
$year = $a[1];
$daysInMonth = $this->getDaysInMonth($month, $year);
$date = getdate(mktime(12, 0, 0, $month, 1, $year));
$first = $date["wday"];
$monthName = $this->monthNames[$month - 1];
$prev = $this->adjustDate($month - 1, $year);
$next = $this->adjustDate($month + 1, $year);
if ($showYear == 1)
{
$prevMonth = $this->getCalendarLink($prev[0], $prev[1]);
$nextMonth = $this->getCalendarLink($next[0], $next[1]);
}
else
{
$prevMonth = "";
$nextMonth = "";
}
$header = $cs=$monthName . $c=(($showYear > 0) ? " " . ($year+543) : "");
$s .= "<table width=\"660\" align=\"center\" border=\"0\"cellpadding=\"0\" cellspacing=\"0\">";
$s .= " <tr>";
$s .= " <td>";
$s .= "<table class=\"calendar\" border=\"1\" bgcolor=\"#FFFFFF\" bordercolor=\"white\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n";
$s .= "<tr>\n";
$s .= "<td height=\"40\" colspan=\"7\" align=\"center\" bgcolor=\"#FFFFFF\">
". (($prevMonth == "") ? " " : "
<a href=\"$prevMonth\" title=\"เดือนก่อนนี้\"><img src=\"images/pre.gif\"></a>") . "
$header
" . (($nextMonth == "") ? " " : "
<a href=\"$nextMonth\" title=\"เดือนถัดไป\"><img src=\"images/next.gif\"></a>") ."</td>\n";
$s .= "</tr>\n";
/*#############################################################################################
กำหนดช่องวันที่ของแต่ละเดือน
#############################################################################################
*/
$s .= "<tr hieght=20 bgcolor=\"#FF9900\">\n";
$s .= "<td align=\"center\" height=\"30\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+1)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+2)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+3)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+4)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+5)%7] . "</center></font></td>\n";
$s .= "<td align=\"center\" valign=\"middle\" height=\"14\" width=\"14%\"><font size=\"3\" face=\"Tahoma\"><center>"
. $this->dayNames[($this->startDay+6)%7] . "</center></font></td>\n";
//########################################################################
// จบการกำหนดช่องวันที่ของแต่ละเดือน
$s .= "</tr>\n";
$d = $this->startDay + 1 - $first;
while ($d > 1)
{
$d -= 7;
}
$today = getdate(time());
while ($d <= $daysInMonth)
{
$s .= "<tr>\n";
for ($i = 0; $i < 7; $i++)
{
$class = ($year == $today["year"] && $month == $today["mon"] && $d == $today["mday"]) ? "calendarToday" : "calendar";
if(($i ==1) && ($d > 0 && $d <= $daysInMonth))
//##########################################################################
// ลักษณะสีของตาราง
{
$bgcolor="images/ACT.jpg ";
}
else if($d > 0 && $d <= $daysInMonth)
{
$bgcolor="images/DAY.jpg";
}
else if ($d > 0 && $d==date("d"))
{
$bgcolor="";
}
else
{
$bgcolor="images/free.jpg";
}
//###############################################################################
// จบการกำหนดลักษณะสีของตาราง
$s .= "<td class=\"$class\" align=\"right\" height=\"80\" background=\"$bgcolor\" title=\"$title\"><font size=\"2\" face=\"Tahoma\"><center>";
if ($d > 0 && $d <= $daysInMonth)
{
$s .= "<b>".(($link == "") ? $d : "</b><center><center><b>$d</b></center><fontcolor=\"blue\">
</font></center>");
}
else
{
$s .= "";
}
$s .= "<center></font></td>\n";
$d++;
}
$s .= "</tr>\n";
}
$s .= "</table>\n";
$s .= "</td>";
$s .= "</tr>";
$s .= "</table>";
return $s;
}
function adjustDate($month, $year)
{
$a = array();
$a[0] = $month;
$a[1] = $year;
while ($a[0] > 12)
{
$a[0] -= 12;
$a[1]++;
}
while ($a[0] <= 0)
{
$a[0] += 12;
$a[1]--;
}
return $a;
}
var $startDay = 0;
var $startMonth = 1;
var $dayNames = array("อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์");
var $monthNames = array("มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน","กรกฏาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม");
var $daysInMonth = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
}
class MyCalendar extends Calendar{
function getCalendarLink($month, $year)
{
$s = getenv('SCRIPT_NAME');
return "$s?month=$month&year=$year";
}
}
?>
<?
$d = getdate(time());
if ($month == "")
{
$month = $d["mon"];
}
if ($year == "")
{
$year = $d["year"];
}
$cal = new MyCalendar;
echo $cal->getMonthView($month, $year);
?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS
|
|
|
|
|
|
Date :
2012-02-23 23:10:08 |
By :
ppsonic |
View :
1045 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับคุณ mr.win เดี๋ยวผมขอลองไปทำก่อนนะครับถ้ายังไม่ได้เดี๋ยวผมขอมารบกวนใหม่นะครับ
|
|
|
|
|
Date :
2012-02-24 09:27:50 |
By :
ppsonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ mr.win ครับคือผมยังติดอีกอย่างคือผมมองไม่ออกว่าตัวแปรตัวไหนที่เก็บ วันเดือนปี อะครับ แบบว่าถ้าผมจะส่ง ค่า วัน. เดือน. และก็ ปี ผ่านไปทาง url ผมจะต้องส่งค่าตัวแปรตัวไหนหรอครับ. ขอบคุณครับ
|
|
|
|
|
Date :
2012-02-24 11:53:01 |
By :
ppsonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แจกฟรี ปฏิทินกิจกรรม PHP กับฐานข้อมูล MySQL Database เอาไปใช้กันแบบฟรี !!
|
|
|
|
|
Date :
2013-04-05 10:40:09 |
By :
tc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|