hi all
i have a probleme with HTTP object.
i want to put a variable in.
example :
"http://url.com/up.php?info=EditBox.Text"
but Editbox.text is recongnize as a simple text.
anyone can help me
i have find -_-
i am so noob ^^
"http://zefish.com/up.php?info="+EditBox.Text
sorry for useless post
Use &, not +.
Develop games in your browser. Powerful, performant & highly capable.
okay ,
can you explain me the difference , when i use + then work too
Under certain conditions the plus sign can work, but the ampersand sign works under all circumstances.
& -> concatenates strings
+ -> adds values
ok thanks for information :)