|
|
|
กรอกวันที่ แล้วก่อนบันทึกให้วันที่มันบวก อีก 30 วัน เขียนประมาณไหนเหรอครับขอบคุณครับ |
|
|
|
|
|
|
|
สมมุติ field คือ date
ค่าที่รับมาคือ
$dateinput = $_POST['dateinput'];
update xxx set date = DATE_ADD($dateinput, INTERVAL 30 DAY);
|
ประวัติการแก้ไข 2014-09-10 10:48:43
|
|
|
|
Date :
2014-09-10 10:48:13 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็อปจาก php.net มาเลย
Code (PHP)
<?php
$date = new DateTime('2014-09-01');
$date->add(new DateInterval('P30D'));
echo $date->format('Y-m-d') . "\n";
?>
|
|
|
|
|
Date :
2014-09-10 12:45:50 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบเดิมๆ
$dateinput = '2014-09-01';
echo date('Y-m-d', strtotime("+30 day", $tdateinput));
|
|
|
|
|
Date :
2014-09-10 13:41:02 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!--
@Programmer : geidtiphong singseewo
@Email : [email protected]
@Telephone : 089-4915453
@Line : devpop
@facebook : www.facebook/popkung
@youtube : DEVPOP
Update : 10-Sep-2014
-->
<!doctype>
<html>
<head>
<title>jQuery Howto Use Modal</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/flick/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
label {
font-weight: bold;
text-align: right;
display: inline-block;
width: 150px;
}
input[type="text"] {
font-size: 12px;
width: 300px;
margin: 2px;
border: solid 1px #eee;
outline: none;
}
input[type="text"]:focus {
border: solid 1px #00BFFF;
background-color: #F0F8FF;
}
hr {
height: 1px;
width: 99%;
color: #ccc;
background-color: #ccc;
border: none;
}
</style>
</head>
<body>
<?php
$txt_date = isset($_POST['txt_date']) ? $_POST['txt_date'] : '';
?>
<h4 style="text-align: right; color: blue;">jQuery Howto Use Datepicker</h4><hr>
<form action="#" method="post" autocomplete="off">
<label for="txt_date">Date :</label>
<input type="text" name="txt_date" id="txt_date" value="<?php echo $txt_date;?>" class="date_picker" style="width: 100px;">
<input type="submit" name="btn" id="btn" value="Click !">
</form>
<?php
if($txt_date != '') {
echo 'PHP : ', date('Y-m-d', strtotime("+1 day"))."<br>";
echo 'jQuery : ', date('Y-m-d', strtotime("+30 day", strtotime($_POST['txt_date'])));
}
?>
</body>
</html>
<script type="text/javascript">
$(document).ready(function() {
/* datepicker */
$(".date_picker").datepicker({
dateFormat: 'yy-mm-dd',
showOn: 'both',
buttonImage: 'images/calendar.png',
buttonImageOnly:true,
duration: 'fast',
showAnim: "drop"
});
});
</script>
Code ตัวอย่างอื่นๆ โหลดได้ที่ Link ด้านล่างครับ
https://drive.google.com/folderview?id=0B9WBIvRSivz9UGRfN0xtTG54Wms&usp=sharing
|
ประวัติการแก้ไข 2014-09-10 14:05:18
|
|
|
|
Date :
2014-09-10 14:03:19 |
By :
geidtiphong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|