I deleted a previous post (that had no responses) that was sort of about this same thing, but it wasn't really...sorry about that.
I'm trying to upload an array via a form and then use this info to populate the database. I'm serializing my data and then unserializing it so that I can access the elements.
I can print_r($uploaded_array) just fine but I can not access any of the elements.
$uploaded_array['name'], for instance, returns the first letter of the uploaded data. So, it seems that my data isn't really being serialized/unserialized properly.
I've seen people use base64_decode (and encoding the data beforehand) but I don't understand why I would even need this step - if I can't get the above to work.
$new_array = unserialize(base64_decode($uploaded_array));
Any hints out there as to how I might proceed?
No, I'm not getting any error messages and as I said, I can print out the data I just can't access the elements.