Array
( [step1] => 1
[step2] => 18
[step3] => 2000
[step4] => Array ( [crdStat] => step3-slctcrdtcrd )
[step5] => Array([cardName] => Test )
[step6] => Array([mnthSpend] => 1000 )
[step7] => Array ([payFrq] => undefined )
[step8] => Array([rolAmnt] => 344 )
Currently I am Just assigning that in PHP way
$_SESSION['mcwizard'][$step]['bTransStat'] = $_GET['bTransStat'];
I want to save this array in a session in Drupal 7 What is the best Drupal 7 way to achieve this. So I can use these session variable anywhere in the application.
Thank You