I have an app that get USERs info.
I want users can edit their infos but I cant write codes for this ability.
thank you if help me up that to write codes for update my DB with app
Sub UpdateUserInfo(id As String, user_id As String) ' Add more variables
Dim j As HttpJob
j.Initialize("", Me)
j.Download2("http://mydomain.com/myphpapp/update_user_info.php", _
Array As String("id", id, "user_id", user_id)) ' Add more variables
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release
End Sub