|
|
|
ตรวจสอบวันที่ไมเวลาไม่ให้จองย้อนหลังจาก วันที่ เวลาของปัจจุบัน |
|
|
|
|
|
|
|
Code (PHP)
<?php
$date_now=time(); // <-----เวลาปัจจุปัน
$Date_post=strtotime("2009-12-28 00:00:00"); // <----- เวลาที่รับจาก form
if($date_now > $Date_post){
echo"เวลาย้อยหลังนะครับ อิอิอิ";
}
?>
ประมาณนี้นะครับ ลองประยุกนะ
|
|
|
|
|
Date :
2009-12-28 13:09:14 |
By :
onedan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาวาสคริปต์โลด มะต้อง รีเฟรช
|
|
|
|
|
Date :
2009-12-28 13:14:02 |
By :
sillyman24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!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>Date Picker</title>
<link rel="stylesheet" type="text/css" href="../development-bundle/themes/ui-lightness/ui.all.css">
<script language="JavaScript" type="text/javascript" src="../js/jquery-1.3.2.min.js"></script>
<script language="JavaScript" type="text/javascript" src="../development-bundle/ui/ui.core.js"></script>
<script language="JavaScript" type="text/javascript" src="../development-bundle/ui/ui.datepicker.js"></script>
<style type="text/css">
body{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#333399;
}
</style>
<script type="text/javascript">
$(function(){
$("#birthday").datepicker({minDate:'Today', maxDate: '+0Y +0M +14D'});
//Y=year, M=Month, D=Day อยากได้เท่าไหร่ใส่เอาโลด
});
</script>
</head>
<body>
<div>
<form action="#" method="post">
<input name="birthday" id="birthday" type="text" />
</form>
</div>
</body>
</html>
|
|
|
|
|
Date :
2009-12-29 20:51:59 |
By :
peterxp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|