Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var x = e.pageX;
var y = e.pageY;

Which is the easiest way to save those jQuery variables in a PHP session.

share|improve this question
1  
@michael Why link to a question which has no accepted or obvious answer? – Maverick Aug 10 '11 at 16:18

2 Answers

up vote 4 down vote accepted
$.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/

share|improve this answer
1  
No they couldn't. The session keys are declared in the PHP file. – AlienWebguy Aug 10 '11 at 16:31
Dude, look at the code. JavaScript is not setting the session keys. – AlienWebguy Aug 10 '11 at 17:07

Make an AJAX request to a PHP page that saves them in the session.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.