|
|
|
รบกวนขอโค้ดคำนวนวันล่วงหน้า แบบเฉพาะวันที่กำหนด จันทร์ อังคาร |
|
|
|
|
|
|
|
ทำได้แล้วครับ ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2015-02-21 13:36:13 |
By :
kunasin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำแบบใหนครับ เอามาลงไว้ หรืรอเขียนเป็นบทความ ไว้ก็ได้ครับ คนรุ่นต่อ ๆ ไป จะได้นำไปใช้งานได้
|
|
|
|
|
Date :
2015-02-21 16:49:04 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอด้วยครับ
|
|
|
|
|
Date :
2015-02-22 10:07:05 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำแบบนี้ครับ ผมดูมาจากตัวอย่างอีกทีครับ ^^
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> Calculator Day </title>
</head>
<body>
<?php
$strStartDate = "2015-03-02";
$strEndDate = "";
$i = 0;
$i2 = 10;
$a = "";
$intHoliday = 0;
$intWorkDay = 0;
$intTotalDay = ((strtotime($strEndDate) - strtotime($strStartDate))/ ( 60 * 60 * 24 )) + 1;
while ($i < $i2 ) {
$DayOfWeek = date("w", strtotime($strStartDate));
if($DayOfWeek == 1 or $DayOfWeek == 3 or $DayOfWeek == 5) // 0 = Sunday, 6 = Saturday;
{
$i++;
echo "$strStartDate = <font color=red>เรียน</font><br>";
include 'connect.php';
$sql1= "SELECT * FROM tbtestday WHERE test_id LIKE '1' ";
$result = mysql_query($sql1);
$sql = "UPDATE tbtestday
SET schedule = ',$strStartDate' WHERE test_id LIKE '1'";
$query = mysql_query($sql) or die(mysql_error());
$a = $a.",".$strStartDate ;
}
else
{
$intWorkDay++;
}
//$DayOfWeek = date("l", strtotime($strStartDate)); // return Sunday, Monday,Tuesday....
$strStartDate = date ("Y-m-d", strtotime("+1 day", strtotime($strStartDate)));
}
echo "<hr>";
echo $a ;
include 'connect.php';
$schedule = isset($schedule);
$sql1= "SELECT * FROM tbtestday WHERE test_id LIKE '1' ";
echo "<br>$schedule<br>";
echo $Enddate = $strStartDate = date ("Y-m-d", strtotime("-1 day", strtotime($strStartDate)));
$result = mysql_query($sql1);
$sql = "UPDATE tbtestday
SET schedule = '$a',dateend = '$Enddate' WHERE test_id LIKE '1'";
$query = mysql_query($sql) or die(mysql_error());
echo "<br>Work Day = $i";
?>
</body>
</html>
|
ประวัติการแก้ไข 2015-02-22 18:42:14
|
|
|
|
Date :
2015-02-22 18:41:41 |
By :
kunasin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-02-22 20:17:49 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|