insertar date en mysql code example
Example 1: mysql insert datetime
-- If you just need to insert the current DateTime: --
INSERT INTO yourtable (`DateTimeFieldName`) VALUES (NOW());
Example 2: insertar tipo date en mysql
$(document).ready(function() {
$("#elemento").click(function(event) {
$(this).append("Has hecho clic!");
});
});