Split comma seperate string and add the parts as values to post function

Split comma seperate string and add the parts as values to post function

I have the following values stored in a variable called 'data'

46/lee jones/csf

But thats just an example how they are sent to me to use.

And I gain that with the following code

  1. if (data != 0){
        var stuff = data;
        alert (stuff);
    }

So then what I want to do is seperate those values up into single items, and attach as values to post as below. I have put the values in to demonstrate how they need to line up, but obviosuly I need to use the values in maybe array values I think, but not sure how to do it.
  1. if (data != 0){
        var stuff = data;
       
    $.post("save_Session.php", { ID: 46, NAME: lee jones, COMPANY: csf }) .done(function(data) { 
    location.href='index2.php';
    });

  2. }