PHP Classes

File: htdocs/plugins/boiler/utils.js

Recommend this page to a friend!
  Classes of Will Tinsdeall   Boiler Framework   htdocs/plugins/boiler/utils.js   Download  
File: htdocs/plugins/boiler/utils.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Boiler Framework
Web application framework that implements MVC
Author: By
Last change:
Date: 9 years ago
Size: 476 bytes
 

Contents

Class file image Download
function build_http_query(parameters) { qs = ""; for(var key in parameters) { var value = parameters[key]; qs += encodeURIComponent(key) + "=" + encodeURIComponent(value) + "&"; } if (qs.length > 0){ qs = qs.substring(0, qs.length-1); //chop off last "&" } return qs; } function parse_http_query(string) { out = new Object(); e = string.split("&"); for (i in e) { keyval = e[i].split("="); out[keyval[0]] = keyval[1]; } return out; }