PDA

View Full Version : Argh, I need help.



leshter
10-17-2009, 10:04 PM
So I have a web object and I want the input1 to affect only part of the url.

So basically I have a URL that has information on both sides of the input. so for instance I want:

http://www.x.com/INPUT1.x

Obviously, input1 is going to be the input, but I don't know how to properly format this code.

IdeasVacuum
10-17-2009, 10:18 PM
It is simply a string, so you can concatenate like this:

myString = "http://www.x.com/" .. INPUT1 .. ".x"

leshter
10-17-2009, 10:27 PM
It is simply a string, so you can concatenate like this:

myString = "http://www.x.com/" .. INPUT1 .. ".x"

wow. Thanks :yes