簡體   English   中英

網絡服務更新錯誤

[英]web service update error

我有一個向我顯示此錯誤的Web服務

您的SQL語法有誤; 在第4行{“ items”:[[“ succes”]]}中,查看與您的MySQL服務器版本相對應的手冊,以在'0'附近使用正確的語法,date_de_naissance ='1988-02-02',lieu_de_naissance ='

<?php

include('settings.php');
mysql_connect($host,$user,$password);
mysql_select_db($base);

mysql_query('SET CHARACTER SET utf8');

$id_patient = $_GET['id_patient'];

$nom = $_GET['nom'];
$prenom = $_GET['prenom'];
$Sexe = $_GET['Sexe'];
$date_de_naissance = $_GET['date_de_naissance'];
$lieu_de_naissance = $_GET['lieu_de_naissance'];

$adresse = $_GET['adresse'];
$latitude = $_GET['latitude'];
$longitude = $_GET['longitude'];
$telephone = $_GET['telephone'];
$email = $_GET['email'];

$situation_familiale = $_GET['situation_familiale'];
$profession = $_GET['profession'];
$numero_securite_sociale = $_GET['numero_securite_sociale'];
$taille = $_GET['taille'];
$poids = $_GET['poids'];


$groupe_sanguin = $_GET['groupe_sanguin'];
$allergies = $_GET['allergies'];
$antecedents_chirurgicaux = $_GET['antecedents_chirurgicaux'];
$antecedents_medicaux = $_GET['antecedents_medicaux'];
$antecedents_familiaux = $_GET['antecedents_familiaux'];

if ($id_patient!= NULL )
{

$req = "UPDATE patient SET nom = '".$nom."' , prenom = '".$prenom.", Sexe =    '".$Sexe."',
     date_de_naissance = '".$date_de_naissance."',

     lieu_de_naissance = '".$lieu_de_naissance."',

     adresse = '".$adresse."',
     latitude =  '".$latitude."',
     longitude =  '".$longitude."',
     telephone =   '".$telephone."',
     email =   '".$email."',

     situation_familiale =  '".$situation_familiale."',
     profession =  '".$profession."',
     numero_securite_sociale =  '".$numero_securite_sociale."',
    taille =  '".$taille."',
     poids =  '".$poids."',


     groupe_sanguin =  '".$groupe_sanguin."',
     allergies =  '".$allergies."',
     antecedents_chirurgicaux = '".$antecedents_chirurgicaux."',
     antecedents_medicaux =  '".$antecedents_medicaux."',
     antecedents_familiaux = '".$antecedents_familiaux."'


         WHERE id_patient = '".$id_patient."'   ";

$sql=mysql_query($req);
echo mysql_error();
$items = array("items" => NULL);
$items["items"][] = array("succes");
echo json_encode($items,JSON_UNESCAPED_UNICODE);
}
else{$items = array("items" => NULL);
$items["items"][] = array("erreur");
echo json_encode($items,JSON_UNESCAPED_UNICODE);}

?>

缺少結束語。

$req = "UPDATE patient SET nom = '".$nom."' , prenom = '".$prenom."', Sexe = '".$Sexe."',

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM