PDA

View Full Version : Append help



nad46
10-11-2009, 01:07 AM
Alright some certain websites have a search feature which gives the following adress
www.websiteexample/filter=SEARCH RESULTS

say i place an iput then use Input.GetText how can i append that to the site
result = Input.GetText("Input1")
^result

www.websiteexamplr/filter=result???
ways that i can possibly do this i have a feeling its something simple that im missing

RizlaUK
10-11-2009, 04:28 AM
here, something like this should work


local sText = Input.GetText("Input1")
local sSearchString="www.websiteexample/filter="..sText
Web.LoadURL("MyWeb1", sSearchString);