<script type="text/javascript">
function countDown(){
var timeA =new Date("Y-m-d H:i:s"); // วันเวลาปัจจุบัน
var timeB =new Date('<?php $outdate?>'); //ดึงจากฐานข้อมูล
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+" วินาที";
}
}
var iCountDown=setInterval("countDown()",1000);
</script>