I create a array
with JSON
and send it in an encrypted variable in base64
in a form.
I recover it by POST
, the decrypted and it remains:
[
{"idcliente":"1",
"id_comercial":"999999",
"preciototal":"698.01",
"payTotalTotal":"713.01"
}
]
How can I get each element of array
apart so I can store it in a column in mysql
each?
Thanks