-3
我需要一些幫助:更新日期和時間在MySQL
- 我有被安排在表
- 的形式在每行數據的列表,有文字,在對話框中的日期和時間進入
- 我需要更新的日期和時間到數據庫
我沒能獲得在$_REQUEST
因爲ID文本框的我有文本框的值給定就像date$counter
,因爲每一行都必須是唯一的。
代碼示例:
<table><tr><td>
<input type='text' name='date$counter_sno' id='sel$counter_sno' size='15' value=''>
<input type='reset' value='...' id='button$counter_sno'>
<script type='text/javascript'>
var cal = new Zapatec.Calendar.setup({
inputField : 'sel$counter_sno', // id of the input field
singleClick : false, // require two clicks to submit
ifFormat : '%Y-%m-%d %H:%M', // format of the input field
showsTime : true, // show time as well as date
button : 'button$counter_sno' // trigger button
});
</script>
</td>
</tr>
</table>
感謝您的幫助 –
+1。另外,用'if($ _POST){'包裝表單處理程序,這樣get操作不會嘗試寫入數據庫。 – halfer
好點@halfer。修正。 – christopher