4
I have a variable text and wanted to create an array with it, is it possible? follows the variable:
$texto = "forma=3&banco=100&agencia=200&conta=300&cheque=404";
the way out that desire would be is:
array(
'forma' => '3',
'banco' => '100',
'agencia' => '200',
'conta' => '300',
'cheque' => '404'
);
perfect! exactly what I needed.
– WMomesso