Private Sub SwiftButton1_Click
Dim resJob As String
Dim server As String="https://www.alfaiz678.com/test.php"
Dim JobX As HttpJob
JobX.Initialize("JobX", Me)
JobX.PostString(server, _
"action=B4X Simple, powerful and moderndevelopment tools." )
'
' JobX.Download2(server, _
' Array As String ("action","B4X Simple, powerful and moderndevelopment tools." ))
JobX.GetRequest.Timeout=15000
Wait For (JobX) JobDone(j As HttpJob)
If j.Success Then
resJob = J.GetString
Log("Response from server: " & resJob)
'xui.MsgboxAsync(resJob,"")
End If
j.Release
End Sub