Consider I have a string in PHP like this:
$a = "a=hello&b=welcome&c=getlost&d=sitHere";
I want to make an array like this:
$b = ["a" => "hello", "b" => "welcome", …];
Is it possible? I think it is possible using explode.
I get this data from an AJAX request.