Given a URL and Querystring
http://www.hotmail.com?1=Hello&2=My&3=Name&4=is&5=JohnI don't know how many parameters will be in the querystring, but I need to extract each one and concatenate them into one string using JAVASCRIPT
Using Javascript:
Start Loop
Get Next parameter from querystring
StringVariable = previous parameters + currentParameter
Next Loop until no more parameters exist
echo StringVariable
output = 'Hello My Name is John'
Start Free Trial