I have an array like this:
$aSample = [
'productName' => [
'sample',
'sample2'
],
'productNumber' => [
'numberOne',
'numberTwo'
]
];
How can I make this array look like this one:
productName=sample,sample2&productNumber=numberOne,numberTwo
Thank you for the help in advance!