Hi there,
Guess I'm having a braindead day and hope somebody can point me the right direction. :rolleyes:
Issue is:
serialized array in db:
s:93:"array(
0 => '75',
1 => '100',
2 => '150',
3 => '240',
4 => '500',
5 => '1024',
);";
This is the exact value in the db table sizes.
When doing:
$resize_dimensions = unserialize($row['sizes']);
All I'm getting back in var: "$resize_dimensions" is a string instead of an array.
"print_r()" and "echo $resize_dimensions;" --- comes back with:
array( 0 => '75', 1 => '100', 2 => '150', 3 => '240', 4 => '500', 5 => '1024', );
As this is a string, how the heck am I getting this string back to be an array ? :o
Sorry for asking silly questions... But my brain is somehow gone today...
Thanks a million
griddie