|
|
|
ใช้ DateDiff หาระยะห่างของวันที่ ได้เฉพาะแถวแรกคัฟ แถวต่อไปขึ้นเออเร่อ |
|
|
|
|
|
|
|
แล้วเอาฟังก์ชั่น
Code (PHP)
function DateDiff($strDate1,$strDate2)
{
return (strtotime($strDate2) - strtotime($strDate1))/ ( 60 * 60 * 24 ); // 1 day = 60*60*24
}
ออกจากลูป while ด้วยก็น่าจะดีกว่า
|
|
|
|
|
Date :
2013-01-02 11:11:42 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
session_start();
mysql_connect("localhost","root","1234");
mysql_select_db("test");
?>
<!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>
<?php
date_default_timezone_set('UTC');
$date_now = date('d-m-Y');
echo $date_now."<br>";
$sql = "select * from booking order by booking_id";
$rs = mysql_query($sql);
while($row = mysql_fetch_object($rs))
{
$date_db = date("d-m-Y" , strtotime($row->date_booking)); // แปลง ให้อยู่ในรูปแบบเดียวกัน
echo $date_db."<br>";
echo (( strtotime($date_now) - strtotime($date_db) ) / ( 60 * 60 * 24 ))."<br>"; // หาความต่างของวัน
}
?>
</body>
</html>
|
|
|
|
|
Date :
2013-01-02 11:16:56 |
By :
kokiflam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำตามที่บอก แต่มันยัง error เหมือนเดิมคัฟ
|
|
|
|
|
Date :
2013-01-02 12:46:50 |
By :
kunnawut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองส่ง code มาให้ดูอีกรอบคับ error ด้วย
|
|
|
|
|
Date :
2013-01-07 13:34:24 |
By :
kokiflam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|