Lets say I have this data...just an example!
Before Serialize
array (size=2)
'first_name' => string 'Swashata'
'last_name' => string 'Ghosh'
After Serialize
a:2:{s:10:"first_name";s:8:"Swashata";s:9:"last_name";s:5:"Ghosh";}
So after the serialized data I'm going to unserialized it and get each value of the element of array to make it variable. The problem here is I want to get each element to make them a variable so that I can easily call them when I need it. Thanks! ahead.