i just got the hang of using jquery ajax
for example, this code sends the contents of the comment box to the php file.
$.post("user_submit.php", {
comment: $("#comment").text()
});
the question however is how do i receive the data in the user_submit.php file?
With
$.post()any data sent like this:is received as such: