Say you have an array like this...
username, password, email
and you need to assign a value to each element. After, this needs to be formatted into a string like this:
username=someRandomValueAssigned&password=someRandomValueAssigned&email=someRandomValueAssigned
how would I do this? Thanks.