B4J Question Read variables from a PHP/MySQL server

ThRuST

Well-Known Member
Licensed User
Longtime User
I have managed to send a string using jOkHttpUtils2 to my domain (PHP/MySQL) this way

B4j
B4X:
Sub BtnSend_Click
 
    'Send a POST request
    job2.Initialize("Job2", Me)
    job2.PostString("http://www.domainname.com/phpscript.php", "p1=Hello World!")
 
End Sub

PHP
B4X:
<?php
 
   $p1 = $_POST['p1'];
   echo "Server script recieved: " . $p1;

?>

How can I download a string (p2) and also (p3, p4, p5) to the client application as an example from the server lets say from senddata.php but how?
since I'm using jOkHttpUtils2 I want to use it to download not only upload variables.

Thanks for sorting this out.
 
Last edited:
Top