I have the following string
sender=48&destination=51&message=hi+good&sender=48&destination=49&message=good+boy
Please help me convert that into PHP array as following
array = array(
'sender'=>48,
'destination'=>51,
'message'=>hi+good,
'sender'=>48,
'destination'=>49,
'message'=>good+boy
);
Note: Its not PHP GET.
Array ( [0] => Array ( [sender] => 48 ) [1] => Array ( [destination] => 51 ) [2] => Array ( [message] => hi+good ) [3] => Array ( [sender] => 48 ) [4] => Array ( [destination] => 49 ) [5] => Array ( [message] => good+boy ) )