Time is saved into the database as 00:00:00
Currently, I am trying to save a form into the database. However, when I try to save the time into database, it was saved as 00:00:00. The data type that I am using is time. Could it be due to the form using hh:mm AM/PM format hence, the form details was not saved into the database?
HTML:
<div data-role="fieldcontainer">
<label for="time_from">From</label>
<input type="time" name="time_from">
</div>
<div data-role="fieldcontainer">
<label for="time_to">To</label>
<input type="time" name="time_to">
</div>
JS:
function AddBooking() {
var url = serverURL() + "/submitform.php";
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
$.ajax({
url: url,
type: 'GET',
data: JSONObject,
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (arr) {
_getApplicationResult(arr);
},
error: function () {
validationMsg();
}
});
}
function _getAddorderResult(arr) {
if (arr[0].result === 1) {
validationMsgs("Application submitted.", "Info", "OK");
window.location = "homepage.html";
}
else {
validationMsgs("Application is not submitted", "Error", "OK");
}
}
javascript jquery html date
add a comment |
Currently, I am trying to save a form into the database. However, when I try to save the time into database, it was saved as 00:00:00. The data type that I am using is time. Could it be due to the form using hh:mm AM/PM format hence, the form details was not saved into the database?
HTML:
<div data-role="fieldcontainer">
<label for="time_from">From</label>
<input type="time" name="time_from">
</div>
<div data-role="fieldcontainer">
<label for="time_to">To</label>
<input type="time" name="time_to">
</div>
JS:
function AddBooking() {
var url = serverURL() + "/submitform.php";
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
$.ajax({
url: url,
type: 'GET',
data: JSONObject,
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (arr) {
_getApplicationResult(arr);
},
error: function () {
validationMsg();
}
});
}
function _getAddorderResult(arr) {
if (arr[0].result === 1) {
validationMsgs("Application submitted.", "Info", "OK");
window.location = "homepage.html";
}
else {
validationMsgs("Application is not submitted", "Error", "OK");
}
}
javascript jquery html date
1
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52
add a comment |
Currently, I am trying to save a form into the database. However, when I try to save the time into database, it was saved as 00:00:00. The data type that I am using is time. Could it be due to the form using hh:mm AM/PM format hence, the form details was not saved into the database?
HTML:
<div data-role="fieldcontainer">
<label for="time_from">From</label>
<input type="time" name="time_from">
</div>
<div data-role="fieldcontainer">
<label for="time_to">To</label>
<input type="time" name="time_to">
</div>
JS:
function AddBooking() {
var url = serverURL() + "/submitform.php";
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
$.ajax({
url: url,
type: 'GET',
data: JSONObject,
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (arr) {
_getApplicationResult(arr);
},
error: function () {
validationMsg();
}
});
}
function _getAddorderResult(arr) {
if (arr[0].result === 1) {
validationMsgs("Application submitted.", "Info", "OK");
window.location = "homepage.html";
}
else {
validationMsgs("Application is not submitted", "Error", "OK");
}
}
javascript jquery html date
Currently, I am trying to save a form into the database. However, when I try to save the time into database, it was saved as 00:00:00. The data type that I am using is time. Could it be due to the form using hh:mm AM/PM format hence, the form details was not saved into the database?
HTML:
<div data-role="fieldcontainer">
<label for="time_from">From</label>
<input type="time" name="time_from">
</div>
<div data-role="fieldcontainer">
<label for="time_to">To</label>
<input type="time" name="time_to">
</div>
JS:
function AddBooking() {
var url = serverURL() + "/submitform.php";
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
$.ajax({
url: url,
type: 'GET',
data: JSONObject,
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (arr) {
_getApplicationResult(arr);
},
error: function () {
validationMsg();
}
});
}
function _getAddorderResult(arr) {
if (arr[0].result === 1) {
validationMsgs("Application submitted.", "Info", "OK");
window.location = "homepage.html";
}
else {
validationMsgs("Application is not submitted", "Error", "OK");
}
}
javascript jquery html date
javascript jquery html date
edited Nov 23 '18 at 12:38
mahradbt
1839
1839
asked Nov 23 '18 at 11:47
J. DoeJ. Doe
797
797
1
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52
add a comment |
1
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52
1
1
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52
add a comment |
2 Answers
2
active
oldest
votes
I think the problem is here:
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
you trying to access to element with the id time_from
and time_to
but your html doesn't have one...
try to add id to the input elements.
good luck
add a comment |
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
Hash (#) is used to access an object by id attribute
You need something like that:
"time_from": $("input[name='time_from']").val(),
"time_to": $("input[name='time_to']").val(),
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53446144%2ftime-is-saved-into-the-database-as-000000%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think the problem is here:
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
you trying to access to element with the id time_from
and time_to
but your html doesn't have one...
try to add id to the input elements.
good luck
add a comment |
I think the problem is here:
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
you trying to access to element with the id time_from
and time_to
but your html doesn't have one...
try to add id to the input elements.
good luck
add a comment |
I think the problem is here:
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
you trying to access to element with the id time_from
and time_to
but your html doesn't have one...
try to add id to the input elements.
good luck
I think the problem is here:
var JSONObject = {
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
}
you trying to access to element with the id time_from
and time_to
but your html doesn't have one...
try to add id to the input elements.
good luck
answered Nov 23 '18 at 11:52
SeReGaSeReGa
169114
169114
add a comment |
add a comment |
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
Hash (#) is used to access an object by id attribute
You need something like that:
"time_from": $("input[name='time_from']").val(),
"time_to": $("input[name='time_to']").val(),
add a comment |
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
Hash (#) is used to access an object by id attribute
You need something like that:
"time_from": $("input[name='time_from']").val(),
"time_to": $("input[name='time_to']").val(),
add a comment |
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
Hash (#) is used to access an object by id attribute
You need something like that:
"time_from": $("input[name='time_from']").val(),
"time_to": $("input[name='time_to']").val(),
"time_from": $('#time_from').val(),
"time_to": $('#time_to').val()
Hash (#) is used to access an object by id attribute
You need something like that:
"time_from": $("input[name='time_from']").val(),
"time_to": $("input[name='time_to']").val(),
answered Nov 23 '18 at 12:00
kaminarifoxkaminarifox
65
65
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53446144%2ftime-is-saved-into-the-database-as-000000%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Set id attribute to input element.
– Shashidhara
Nov 23 '18 at 11:52