Parsing array data
- by Sam
I am trying to parse this array data that way generated from JQuery and JSON.
Array
(
[d] = Array
(
[0] = Array
(
[order] = 1
)
[1] => Array
(
[order] => 2
)
[2] => Array
(
[order] => 3
)
[3] => Array
(
[order] => 4
)
[4] => Array
(
[order] => 5
)
)
)
I am trying to save the above date into a mysql table, but cannot seem to parse the data properly to be inserted into the database.
Can anyone help?