|
|
|
ต้องการหาเดือนย้อนหลัง สมมุติว่ามี list box เดือน และปีให้เลือก เพื่อจะออกรายงาน หาจำนวนผู้ป่วยที่ยังนอนโรงพยาบาล |
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-10-01 12:49:08 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยู่ที่การออกแบบฐานข้อมูลคุณแล้วหล่ะ
ว่าตอนเก็บ คุณเก็บวันเดือนปีลงไปอย่างไร เช่น date,datetime ฯลฯ
|
|
|
|
|
Date :
2012-10-01 12:58:08 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบที่คุณ compiak บอกครับ อยู่ที่การออกแบบของคุณด้วยครับ
Code (PHP)
<?php
$date =date('Y-m-d');
$nextmonth =date('Y-m-d', strtotime("+1 month"));
$lastmonth =date('Y-m-d', strtotime("11 month"));
$month =date("M",strtotime($date))."(".date("m",strtotime($date)).")";
$nextmonth =date("M",strtotime($nextmonth))."(".date("m",strtotime($nextmonth)).")";
$lastmonth =date("M",strtotime($lastmonth))."(".date("m",strtotime($lastmonth)).")";
echo "Current date :: ".$date."<br>";
echo "<hr />";
echo "Current Month : ".$month."<br>";
echo "Next Month : ".$nextmonth."<br>";
echo "Last Month : ".$lastmonth."<br>";
?>
|
|
|
|
|
Date :
2012-10-01 13:25:10 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเก็บเป็น datetime อ่ะ
|
|
|
|
|
Date :
2012-10-01 13:48:04 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
datetime ก็หาได้ ดัดแปลงเอาเลยครับ
|
|
|
|
|
Date :
2012-10-01 13:57:02 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|