how to set session value in javascript PHP?

Today, We want to share with you set session in javascript php.In this post we will show you javascript read php session cookie, hear for javascript global session variable we will give you demo and example for implement.In this post, we will learn about Get PHP Session Value Using AJAX/Jquery with an example.

php – how to set session value in javascript

make an AJAX call to a PHP script passing

jquery ajax file

$('#editMember').on('show.bs.modal', function (e) {  

    $memberID =  $(e.relatedTarget).attr('data-id');

    //ajax call 
    $.ajax({
         url: "set_members_data.php",
         data: { role: $memberID }
    });                             
}); 

set_members_data.php

//preliminary code

Session::put('memberID', $request->input('role') );  

how to Set/Get session variable in javascript

include jquery-1.9.1.js and jquery.session.js

$(document).ready(function(){ $('.button').click(function(){var href = $(this).val();$.session.set("set_members_data", "wwwpakainfocom");}) });
alert($.session.get("set_members_data"));

I hope you get an idea about how to set session variable in javascript?.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment