Hello,
I am not familiar with php so i need help for this:
in php code that connecting my app to mysql :
Case "Getpersons":
$q = mysql_query("SELECT username, surname FROM users");
in the app:
Dim GetPersons As HttpJob
GetPersons.Initialize("GetPers", Me)
GetPersons.download2("mysite/file.php", Array As String ("action", "GetPersons"))
it works without any problem ( thanks to a user who posted the tutorial i dont remember his name)
i dont know how to edit both app and php code to use with where clause
for example i want to add
SELECT username, surname FROM users where id = txtidbox.text
so what must i add to both app side and php side. I need help about this. 1 little example wil be enough
thank you !
I am not familiar with php so i need help for this:
in php code that connecting my app to mysql :
Case "Getpersons":
$q = mysql_query("SELECT username, surname FROM users");
in the app:
Dim GetPersons As HttpJob
GetPersons.Initialize("GetPers", Me)
GetPersons.download2("mysite/file.php", Array As String ("action", "GetPersons"))
it works without any problem ( thanks to a user who posted the tutorial i dont remember his name)
i dont know how to edit both app and php code to use with where clause
for example i want to add
SELECT username, surname FROM users where id = txtidbox.text
so what must i add to both app side and php side. I need help about this. 1 little example wil be enough
thank you !