Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$("#profile_bar").mouseover(function(){

    <?php $_SESSION['sessionasdf'] = 'asdf'; ?>

});

Hello! I have been busy with this for an hour, but I'm deadbrain now. Can someone help me out or give me a hint? Is the function I wrote above, even possible?

Thanks in advance!

share|improve this question
3  
Javasript is a client side, while PHP is a server side language.. You have to use a technique called AJAX if you want to do this – Critical Point Mar 10 '12 at 11:19
So I can't combine PHP and Javascript? – Mossawi Mar 10 '12 at 11:21
@Mossawi nope - you could use a cookie - set it with JavaScript/jQuery and then get the cookie using PHP – ManseUK Mar 10 '12 at 11:22
Okay! Thanks ManseUK - Ill try it. – Mossawi Mar 10 '12 at 11:23

3 Answers

up vote 4 down vote accepted

You need an Ajax Request to do this. You can't simply start a session in a script that's already been loaded.

$("#profile_bar").mouseover(function() {
    $.ajax({
        url: "sessionStartPage.php",
        cache: false,
        success: function(data) {
            alert("session has begun. Refreshing page now");
            location.reload(); //reload the page to load session variables
        }
    });
});​
share|improve this answer
Omg you're genius! I forgot this one! – Mossawi Mar 10 '12 at 11:36
hehe thanks.as a new user you should be aware that if you find an answer helpful you should accept it by tick checking it on the left. – ladiesMan217 Mar 10 '12 at 11:45
Thanks @ladiesMan217 - Just ticked! – Mossawi Mar 10 '12 at 11:47

As I said you have to use a technique called AJAX.. So its time to start learning:) http://www.smashingmagazine.com/2008/10/16/50-excellent-ajax-tutorials/

share|improve this answer

PHP run on server, JQuery(the javascript) run on browser.That's different. And you can start the session at every page on server, rather than by the event on browser.

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.