Nasıl benim PHP güncelleme fonksiyonu işe alabilirim?

0 Cevap php

Benim kodunda yanlış bir şey görüyor musun? Ben güncelleme fonksiyonu işe alınamıyor .. garip bir şey kalanı düzgün çalışır, ve aynı kodu başka sayfada% 100 çalışıyor olduğunu.

<?php
include("config.php");

$id = $_GET['id'];

$number = $_GET['no'];

$result = mysql_query("SELECT * FROM comments WHERE commentid = '$id'")
or die(mysql_error());  

$row = mysql_fetch_array( $result );

mysql_query("update `comments` set like = like +1 where commentid = '$id'"); <--- only this here doesnt work
?>

And there is 1 line of html after that, a span tag getting some information out of the comments table. My 'like' column is set to int(11), so I don't see that being the problem.

Bu başka innatention hata değildir umarım :/

Teşekkürler bana yardımcı olabilecek herkese çok şey!

Bu hata

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 'like = like +1 where commentid = '61'' at line 1

0 Cevap