Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は単純なphpフォームを持っています。データベース内のすべてのデータを完全に保存します。しかし今、ユーザーがフォームに入力した後に [送信] ボタンをクリックした正確な日時が必要です。現在、日付を 0000-00-00 としてデータベースに保存しています。ありがとう...
INSERT クエリでは、日付フィールドで NOW() を使用します
INSERT INTO `table`(`date`, .., ..) VALUES(NOW(), .., ..)
データベースに created_at のような列がある場合は、mysql を使用します。
ON CREATE CURRENT_TIMESTAMP