is there any js function to convert an array to urlencoded?
i’m totally newbie n JS… thanks!…
my array is a key & value array….
so,
myData=new Array('id'=>'354313','fname'=>'Henry','lname'=>'Ford');
is the same as
myData['id']='354313';
myData['fname']='Henry';
myData['lname']='Ford';
myData.join('&'); //returns error, it doesn't work on such array...
is there any solution?
oh sory…
i have an array like this
var myData=new Array('id'=>'354313','fname'=>'Henry','lname'=>'Ford');
then i need the array converted to be:
id=354313&fname=Henry&lname=Ford
You can do something like this: