Hello everybody!
I need your help, please
I have the following code:
which returns the below error:
java.lang.NumberFormatException: "Invalid double:"username=". I really can't understand why...
Thank you so much in advance for your help.
I need your help, please
I have the following code:
B4X:
Sub baccedi_Click
Dim UsernameVariabile As String
Dim PasswordVariabile As String
UsernameVariabile = fusername.Text 'From an EditText
PasswordVariabile = fpassword.Text 'From an EditText
Dim job1 As HttpJob
'Send a POST request
job1.Initialize("Check", Me)
job1.PostString("http://test.website.org/login.php", "username="+UsernameVariabile +"&pw="+PasswordVariabile)
End Sub
which returns the below error:
java.lang.NumberFormatException: "Invalid double:"username=". I really can't understand why...
Thank you so much in advance for your help.