libURLFormData different url
Posted: Wed Jul 31, 2019 10:42 am
I tried the livecode tutorial, I was trying to use a different url. Why messages that I input are not stored on the server. This is my code. can you help me? thank you
Code: Select all
on mouseUp pButtonNumber
set the text of field "mesejSend" to the text of field "writeMesej"
local tName, tMesej, tDataToPost
put "LIVECODE" into tName
put the text of field "writeMesej" into tMesej
put libURLFormData("name",tName, "message",tMesej) into tDataToPost
post tDataToPost to URL "https: / / b4ap. pps. i o/livecode1"
set the text of field "writeMesej" to empty
answer "mesej send"
end mouseUp