send array in param url code example
Example: pass array in url
www.domain.com?key=value,value1,value2
server will return your key as a single string,
so you need to split the string by your separator
www.domain.com?key=value,value1,value2
server will return your key as a single string,
so you need to split the string by your separator