if ($_GET['action'] == "like")
{
mysql_query("UPDATE blog SET like=like+1 WHERE id=".$_GET['id']."");
header('Location: blog.php?id='.$_GET['id'].'');
}
else if ($_GET['action'] == "dislike")
{
mysql_query("UPDATE blog SET dislike = dislike+1 WHERE id = ".$_GET['id']."");
header('Location: blog.php?id='.$_GET['id'].'');
}
The "dislike" action works great! But the "like" one doesn't. It's close to be the same thing?
Can someone help me???
mysql_query()or in this reference question. – Pekka 웃 Dec 6 '11 at 23:10mysql_real_escape_string()for the classic mysql library), or switch to PDO and prepared statements. – Pekka 웃 Dec 6 '11 at 23:11mysql_error()like @Dagon suggests)? – Bart Dec 6 '11 at 23:12