Italian errore dopo script php

tmtube73

Active Member
Licensed User
buongiorno a tutti, nella mia app b4a carico un layer con 1 pulsante

quando clicco il pulsante eseguo un file presente sul mio hosting in questo modo

B4X:
    ExecuteRemoteQueryS("INSERT INTO servizi (codice,nome,cognome,azienda,data,ora,tipo,latitudine, longitudine, altitudine) VALUES ('001','mario','rossi','cliente spa','2022-08-10','15:22','inizio',4,6,7)",COUNTRIES_LIST)

dove ExecuteRemoteQueryS è cosi definita

B4X:
Sub ExecuteRemoteQueryS(Query As String, JobName As String)
    Dim job As HttpJob
    job.Initialize(JobName, Me)
    job.PostString("https://www.miosito.it/demo/scrivi.php", Query)
End Sub

scrivi.php residente sull'hosting contiene questo codice



B4X:
<?php

$databasehost = "sql.miosito.it";
$databasename = "miosito12345";
$databaseusername ="miosito12345";
$databasepassword = "miapassword";

$con = mysqli_connect($databasehost,$databaseusername,$databasepassword, $databasename) or die(mysqli_error($con));
mysqli_set_charset ($con , "utf8");

// preparo la query
$query = file_get_contents("php://input");
$sth = mysqli_query($con, $query);

if (mysqli_errno($con)) {
   header("HTTP/1.1 500 Internal Server Error");
   echo $query.'\n';
   echo mysqli_error($con);
}
else
{
// lancio la query
echo $res;
$result = mysql_query($sth);
}
mysqli_close($con);
?>


quando clicco il pulsante il record viene correttamente aggiunto nel database online mysql ma poi esce dando il seguente errore

*** Service (httputils2service) Create ***
** Service (httputils2service) Start **
Response from server: <br />
<b>Warning</b>: Undefined variable $res in <b>/home/mhd-01/www.miosito.it/htdocs/demo/scrivi.php</b> on line <b>23</b><br />
<br />
<b>Fatal error</b>: Uncaught Error: Call to undefined function mysql_query() in /home/mhd-01/www.miosito.it/htdocs/demo/scrivi.php:24
Stack trace:
#0 {main}
thrown in <b>/home/mhd-01/www.miosito.it/htdocs/demo/scrivi.php</b> on line <b>24</b><br />
Error occurred on line: 69 (Main)
java.lang.RuntimeException: JSON Array expected.
at anywheresoftware.b4a.objects.collections.JSONParser.NextArray(JSONParser.java:62)
at anywheresoftware.b4a.samples.mysql.main._jobdone(main.java:565)
at java.lang.reflect.Method.invoke(Native Method)
at anywheresoftware.b4a.shell.Shell.runMethod(Shell.java:732)
at anywheresoftware.b4a.shell.Shell.raiseEventImpl(Shell.java:348)
at anywheresoftware.b4a.shell.Shell.raiseEvent(Shell.java:255)
at java.lang.reflect.Method.invoke(Native Method)
at anywheresoftware.b4a.ShellBA.raiseEvent2(ShellBA.java:144)
at anywheresoftware.b4a.BA$2.run(BA.java:387)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:257)
at android.app.ActivityThread.main(ActivityThread.java:8307)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1006)

qualcuno sa dirmi che errore è?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…