Each time i vote up or down it just sets an 1. But i want that votes_up=votes_up+1 inkrements eachtime i vote up.
Bu php kodu
public function voteUp($id)
{
$this->initDB();
$q="update twitter.tweets set vote_up=vote_up+1 where id=$id";
$this->db->query($q);
}
sonucudur
Oy Aşağı: 1
Oy up: 1
Toplam Oy: 18
Nasıl Aşağı oylar ve Yukarı Oy inkremented olduğunu çözebilir?