I need to store time which is in the form of HH: MM AM/PM which is entered from angular js front end.
HTML
<input type="time" ng-model="booktime">
Controller
$http.post("url", {
'booktime':booktime,
.then(function(response) {
},function(error) {
alert("");
console.error(error);
});
}
Mysql
$sql = "INSERT INTO table(booktime)
VALUES (TIME_FORMAT( '11:00:00', '%h:%i:%s %p' ))";