行使用する権利構文については、ご使用のMariaDBサーバーのバージョンに対応するマニュアルを確認しますSQL構文にエラーがあります。近くに「範囲にSQLコードの
$uid=$_POST["uid"];
$mobile=$_POST["mobile"];
$service=$_POST["service"];
$exper=$_POST["exper"];
$range=$_POST["range"];
$af=$_POST["a_from"];
$at=$_POST["a_to"];
$min_charge=$_POST["min_charge"];
$statement=mysqli_prepare($con,"INSERT INTO service (uid,mobile,service,exper,range,a_from,a_to,min_charge) VALUES (?,?,?,?,?,?,?,?)");
mysqli_stmt_bind_param($statement,"iisiiiii",$uid,$mobile,$service,$exper,$range,$af,$at,$min_charge);
mysqli_stmt_execute($statement);
$response=array();
$response["success"]=true;
echo mysqli_error($con);
echo json_encode($response);
すべてがOKですが、私が書くとき、私は、任意の構文エラーを得ることはありませんコード(私は、コード・エディタ・ソフトウェアを使用しています、私はそれをオンラインで使用する場合しかし、私はこのエラーを取得:。。
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'range,a_from,a_to,min_charge) VALUES (?,?,?,?,?,?,?,?)'
第1の5 of SQLについては、実際にはOPが実際には減少したSQLライブラリを使用していません。あなたの正しい道のりSachin –