let domain = "https://www.rexmove.com";
function index_url(url = "", parameter = {}) {
let system = "https://www.rexmove.com/fr/controller/method/";
let home = "https://www.rexmove.com/fr/";
let link = url == "" || url == "index" ? home : system.replace("controller/method",url);
let param = "";
let index = 0;
for(key in parameter){
str = link.indexOf("?") == -1 && index == 0 ? "?" : "&";
param += str + key + "=" + parameter[key];
index++;
}
return link + param;
}
">
let domain = "https://www.rexmove.com";
function index_url(url = "", parameter = {}) {
let system = "https://www.rexmove.com/fr/controller/method/";
let home = "https://www.rexmove.com/fr/";
let link = url == "" || url == "index" ? home : system.replace("controller/method",url);
let param = "";
let index = 0;
for(key in parameter){
str = link.indexOf("?") == -1 && index == 0 ? "?" : "&";
param += str + key + "=" + parameter[key];
index++;
}
return link + param;
}
">