Session+Javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • razanabanu
    New Member
    • May 2007
    • 4

    Session+Javascript

    Hi All how can I access Session variables in Javascript
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Why would you want to access them using Javascript?

    As with any server-side code, in your code, generate the Javascript including the session variables, e.g.
    [PHP]<?php echo "<script type='text/javascript'>var sessVar = '".session->var."';</script>" ?>[/PHP]

    Comment

    Working...