私のフレームワークはcodeigniterです。私はデータベースにユーザー入力を格納するためのフォームを開発しました。 1つの入力は、自動的に入力ボックス内に日付と時刻を入力します。しかし、データベースに保存しようとすると、日付は保存されません。フォーム内の他の値は、データベース に節約これは、CodeIgniterのビューページである自動時間はデータベースに保存されません - コードネーム
<?php $attributes = array("name" => "addclients");echo form_open("home/ExpenseSave", $attributes);?>
<div class="row">
<body onload="myFunction()">
<input type="text" id="demo" class="form-control"/>
</div>
<script>
function myFunction() {
$(document).ready(function(){
$('#demo').attr("placeholder", Date());
});
}
</script>
これは、「デモ」のデータ型が、データベース内のデータベースにデータを保存CodeIgniterのコントローラページ
$data = array(
'demo' => $this->input->post('demo'),
'pt' => $this->input->post('pt'),
'pn' => $this->input->post('pn'),
'task' => $this->input->post('task'),
'employee' => $this->input->post('employee'),
'projectname' => $this->input->post('projectname'),
'ExpenseName' => $this->input->post('ExpenseName'),
'ExpenseAmount' => $this->input->post('ExpenseAmount'),
);
if ($this->db->insert('expenses', $data))
あります日付時刻。データベースは、あなたのビューにMySQL
ご質問の完全な情報をご提供ください。 – Nere
@AbuHassan私の質問を編集しました – Dushee