This is the project as per your request
there are multiple problems in your php script (i only checked insert.php)
1. Which php version are you running??? I ask because mysql_query is deprecated since years.
2. jop1.PostString do exactly this. the payload is posted to the phpscript. The input can be get via
<?php $postdata = file_get_contents("php://input"); ?>
$postdata contains the payload. Note that you need to manually extract the values from the payload as the code above does not parse anything.
Better is to use job.PostMultipart
3. The B4A code misses a DIM for each job you are sending. This is a mistake.
Sub Button1_Click
Dim j As HttpJob
j.Initialize("at",Me)
j.PostMultipart("http://www.mysite.com/insert.php",CreateMap("k": EditText1.Text.Trim),Null)
End Sub
in this case php is doing the parsing for you and deliver the value of k in $_POST["k"]
4. Set errorreporting in php so that you see any error in the output if there is an error.
Place this line at the 1. line of the php-scripts
error_reporting(E_ALL & ~E_NOTICE);