Hello,
I need some help understanding how to display information from the following array and what this method of storage and array is called.
The information held in the database looks like this
{"option1":"1234","option2":"ABCD"}
How do I work with these values? I know how to get the array as a whole but how do I select option1 and the value on its own for example.
If I print the row it shows it as (extended being the field name in the DB)
Array
(
[extended] => {"option1":"1234","option2":"ABCD"}
)
If someone could give some info on what I'm dealing with that would be great.
Thanks.