Difference between revisions of "URL Encoded Data"
From GeoJSON
CnaboCraca (Talk | contribs) m (http://fademon.0lx.net/article-677.htm) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
URL Encoded Data is a Javascript library for converting an array into a URL. This could be useful for passing geographic requests using GeoJSON arrays. | URL Encoded Data is a Javascript library for converting an array into a URL. This could be useful for passing geographic requests using GeoJSON arrays. | ||
Latest revision as of 23:17, 8 January 2009
URL Encoded Data is a Javascript library for converting an array into a URL. This could be useful for passing geographic requests using GeoJSON arrays.
//The JS Array format of the example given above
var arr = {
'name':"Binny",
'year':2007,
'quote':"Hello, World!",
'os':['Windows','Linux','Mac'],
'software':{
'editor':"vi",
'audio':"xmms",
'video':"vlc"
}
}
var data = ued_encode(arr);
Results in:
http://www.example.com/get_data.php?name=Binny&year=2007&
quote=Hello%2C+World%21&os[]=Windows&os[]=Linux&os[]=Mac&
software[editor]=vi&software[audio]=xmms&software[video]=vlc