I have a function that gives an array if I call: full
In my register file, I include the file with the function and set up the variable to full:
$full = serialize(browser_detection( 'full'));
Now, later I take it into my sql as the variable $full, and I get:
a:10:{i:0;s:2:"ie";i:1;s:3:"6.0";i:2;s:4:"ie5x";i:...
Now, I want to make this readable in a webpage, so I try to set a variable equal to the unserialized form of the array:
$user_browser = unserialize($result3['userinfo']);
Note that userinfo is the collumn and result finds the row of the user I want.
However, when I display $user_browser, I get:
Array
What am I doing wrong?
Thanks