จาก function นี้ผมจะเอาค่า php มาใช้อ่ะครับ Code (PHP)
<script type="text/javascript">
function countDown(){
var timeA = new Date(); // วันเวลาปัจจุบัน
var timeB = new Date("10/31/2010 09:09:09"); // วันเวลาสิ้นสุด รูปแบบ เดือน/วัน/ปี ชั่วโมง:นาที:วินาที
var timeDifference = timeB-timeA;
if(timeDifference>=0){
timeDifference=timeDifference/1000;
timeDifference=Math.floor(timeDifference);
var wan=Math.floor(timeDifference/86400);
var l_wan=timeDifference%86400;
var hour=Math.floor(l_wan/3600);
var l_hour=l_wan%3600;
var minute=Math.floor(l_hour/60);
var second=l_hour%60;
var showPart=document.getElementById('showRemain');
showPart.innerHTML="เหลือเวลา "+wan+" วัน "+hour+" ชั่วโมง "
+minute+" นาที "+second+" วินาที";
if(wan==0 && hour==0 && minute==0 && second==0){
clearInterval(iCountDown); // ยกเลิกการนับถอยหลังเมื่อครบ
// เพิ่มฟังก์ชันอื่นๆ ตามต้องการ
}
}
}
// การเรียกใช้
var iCountDown=setInterval("countDown()",1000);
</script>
ค่าที่ query มาจาก php Code (PHP)
$objDB = mysql_select_db($database,$conn);
$objSQLiCountDown = "SELECT * FROM table_calendarevent ORDER BY Event_ID ASC ";
$objQueryiCountDown = mysql_query($objSQLiCountDown) or die (mysql_error());
$objResultiCountDown = mysql_fetch_array($objQueryiCountDown);
if(!$objQueryiCountDown)
{
echo "Record not found<br>";
}
else
{
//echo convert_date_countdown_func($objResultiCountDown["CE_StartDate"],'digit','');
$timeC = convert_date_countdown_func($objResultiCountDown["CE_StartDate"],'digit','');
}
ผมเอามาใส่อย่างนี้ Code (PHP)
var timeB = new Date("<?=convert_date_countdown_func($objResultiCountDown["CE_StartDate"],'digit','')?>"); // วันเวลาสิ้นสุด รูปแบบ เดือน/วัน/ปี ชั่วโมง:นาที:วินาที