Ben php bir MySQL veritabanı için bir satır güncelleştirme aramaya çalışıyorum. Dışarı başarısız ama biçimli bir ekleme yeni bir satır aramaya çalıştığınızda sadece aynı çalışır.
$result = mysql_query("INSERT INTO auth (username, password, studycode, description, server) VALUES ('$username', '$password', '$studycode', '$description', '$server')");
ama bu kod başarısız
$result = mysql_query("UPDATE auth SET username='$username', password='$password', studycode='$studycode', description='$description', server='$server' WHERE index='$id' LIMIT 1;");
dizin tablo için ilk sütun ve anahtar / id.
Edit: Ok so i just went into mysql admin and tried the exact command my code would have sent to track the error.
UPDATE auth SET username='username', password='password', studycode='ab9102y', description='test change', server='server2' WHERE index='5' LIMIT 1;
bana hata veriyor
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'index='5' LIMIT 1' at line 1