Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7034545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:11:56+00:00 2026-05-28T01:11:56+00:00

I have in session PHP: $_SESSION[‘id’] = 2; how can i get this for

  • 0

I have in session PHP:

$_SESSION['id'] = 2;

how can i get this for jQuery?

<script>
   var sessionid = ??? ;
   alert(sessionid);
</script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T01:11:57+00:00Added an answer on May 28, 2026 at 1:11 am

    You could set it as the ID of an element (like the HTML element) if you want to access it from a script:

    <html id="<?php echo $_SESSION['id']; ?>">
    

    In the external script:

    var sessionid = $('html').attr('id');
    alert (sessionid);
    

    This has the added benefit of being able to be read by an external script.

    EDIT:

    You would need to set the session before you output anything, so the full code would be something like:

    <?php
      session_start();
      if (!isset($_SESSION['id']))
        $_SESSION['id'] = 'session1';
    ?><html id="<?php echo $_SESSION['id']?>">
      <head>
        <title>SESSION ID TEST</title>
        <script>
          $(function(){
            var sessionid = $('html').attr('id');
            alert (sessionid);
          })
        </script>
      </head>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code in script.php: <?php session_start(); $user_session = $_SESSION['u_name']; class check_sess {
I have a similar question to this: PHP session timeout callback? Basically, I want
I have this code : <?php session_start(); echo .$_SESSION['eventnum'].; $urlRefresh = testremot.php; header(Refresh: 5;
I have a session variable that I set like this: <?php $token = md5(uniqid(rand(),
For eg I have this code on the main page. <?php session_start(); $_SESSION['order']=array(); ?>
i have this file secure.php session_start(); if(empty($_SESSION['u_name'])) { header(Location:emprego.php); } if(isset($_GET['logout'])) { session_destroy(); header(Location:emprego.php);
Can you store an image in a PHP SESSION ? I have a multi-step
I have tried a session.php script which runs at the head of each page
I have a website/webapp where you can login and it starts a php session.
PHP Session related functions have this one: session_module_name . The documentation only says: session_module_name

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.