now1 = new Date()
function send() {
$.ajax({
type: "POST",
url: "pasha.php",
data: {
test: now1
},
success: function(data) {
alert(data);
},
error: function(err) {
console.error(err);
}
})
}
<?php
echo 'Время ' . ($_POST["test"]);
?>