Can anyone help me with some code to break an array down into variables, ready to be passed in a URL, like so:
The array would be:
$array["LINK1"] = "Blah";
$array["LINK2"] = "Blah2";
...
etc. - it goes on for about 7 or more items in the array
The array above is made up, and doesnt contain numbers like the above example though 😉
I need it to be broken down and reformed like this:
?LINK1=Blah&LINK2=Blah2&LINK3=Blah3
So I can break the array down and port it along a URL basically.
Can anyone help me, please?