Android Question call php on external server

santiago

Member
Licensed User
Longtime User
I am developing an application.Its works with database server via RD. Its working fine.

BUt I must call serveral external server php file like :

www.server.com/h1.php?id=12
www.server.com/h2.php?name=12

The php pages are allways in the same server and I must use them random, like using a function for each

for example :

sub llama1

call www.server.com/h1.php?id=12
end sub
sub llama2
call www.server.com/h1.php?id=12
ens sub

I know I can connect to the server using httpclient but sometimes its not reliable and can fail,
 

santiago

Member
Licensed User
Longtime User
Sorry I sent the message by mistake
Here is again
***********

I am developing an application.Its works with database server via RD. Its working fine.

BUt I must call serveral external server php file like :

www.server.com/h1.php?id=12
www.server.com/h2.php?name=12

The php pages are allways in the same server and I must use them random, like using a function for each

for example :

sub llama1

call www.server.com/h1.php?id=12
end sub
sub llama2
call www.server.com/h1.php?id=12
ens sub

I know I can connect to the server using httpclient but sometimes its not reliable and can fail.

I research inside the help web pages , but I did not find anything.

Please, could someone help me?
If I did not explain well , please ask and I will try.I beg pardon for my English

Thanks in advance for your time.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top