<?
include("commonfile.php");
$start = date("Y-m-d H:i:s");
$end = $_POST['date']." ".$_POST['time'];
if(isset($_POST['productid']) && $_POST['productid']!=""){
$productid = $_POST['productid'];
$expdata = getdata("SELECT expire_date,expire_time from tbl_listing_master WHERE listingid=".$productid." AND currentstatus=0");
$time_rs = mysql_fetch_array($expdata);
$expdate = $time_rs[0];
$exptime = $time_rs[1];
$end = $expdate." ".$exptime;
}
$n = array("expdate" => $end);
echo json_encode($n);
?>
这是我使用 http://keith-wood.name/countdown.html jQuery v1.6.0 的倒计时版本。