1
當我拉月度報告它只是顯示出來的那一天,從每月的第2天的條目是之前的最後的一個月。例如,對於四月的月報告只顯示:按月UNIX時間戳問題
04/02/12 - 12年4月29日
我可以修改什麼,顯示的條目:
12年4月1日 - 04/30/12
$month = $_GET['month'];
if ($services = $db->get_results("SELECT * from vw_newservices where month(from_unixtime(datetime)) = '$month'")) {
foreach ($services as $service) {
$datetime = date("m/d/y",$service->datetime);
由於