Как отправить значение значения переменной javaScript на мою страницу PHP
$(document).ready(function() {
$("#submitscore").click(function(event){
var user = $('#username').val();
var value = document.getElementById('yourscore').innerHTML;
$.post(
"submitscore.php",
{ username: user, score: value }
);
});
});
Good Grasshopper