How can I make this array :
Array
(
[Qualifications] => Array
(
[name] => Array
(
[0] => 1
[1] => 2
)
[description] => Array
(
[0] => 1
[1] => 2
)
)
to look like this array ?
Array
(
[Qualifications] => Array
(
Array [0] =>
(
[name]=> 1
[description] => 1
)
Array [1]
(
[name] => 2
[descrition] => 2
)
)
)
It was generated via form fields with jquery, then sent back to my server.