1
I have the following code:
if (isset($_SESSION['kshopuser'])) {
$USER=unserialize($_SESSION['kshopuser']);
}else{
$_SESSION['kshopuser'] = array();
}
This generates this notice:
Notice [PHP]: unserialize(): Argument is not a string in file c:blablablaa
I've been tring to fix this without sucess. Can anyone point me in the right direction?
Thanks