var x = e.pageX; var y = e.pageY;
Which is the easiest way to save those jQuery variables in a PHP session.
$.ajax({ url: '/update-session.php', data: {"x":e.pageX,"y":e.pageY}, type: 'post', success:function(data){ // if you care. } });
update-session.php:
$_SESSION['pageX'] = $_POST['x']; $_SESSION['pageY'] = $_POST['y'];
http://api.jquery.com/jQuery.ajax/
Make an AJAX request to a PHP page that saves them in the session.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
922 times
active