- Mon Mar 14, 2016 7:30 am
#43088
Thanks, I believe you are correct. It looks like I will have to take multi-step approach. Ultimately I need to use the wget function to send some information.
wget(example.com/page.php?option1=alpha&option2=bravo2&option3=charlie)
So to build that string from my variables I would need to:
Code: Select all[urlVars]
let base = "example.com/page.php?option1="
let opt2 = "&option2="
let opt3 = "&option3="
let x = "alpha"
let y = "bravo"
let z = "charlie"
[buildUrl]
let base = base & x
let base = base & opt2
let base = base & y
let base = base & opt3
let base = base & z
wget(base)
As opposed to something like this:
Code: Select allwget("example.com/page.php?option1="&x&"&option2="&y&"&option3="&z)