$sql="UPDATE users SET TN4='1', Notificare4='1', Neachitate='1' WHERE username='$user'";
This works fine. It sets Neachitate row into 1. But, I want to set it to $Neachitate+ 1 ( +1 value, like each time you click it adds one more)
So, I modified it with
$Neachitate = $row['Neachitate']; // it gets what value is in Neachitate, right?
$sql3="UPDATE users SET TN4='1', Notificare4='1', Neachitate='$Neachitate + 1' WHERE username='$user'";
But this time it sets to 0. Why?