MilanInside
ISP
Hello, first time poster here
I have an query that just increases some values in a table, and I perfer to do it in the query itself (and not by reading the vaules before).
The query is:
mysql_query("UPDATE galerije SET ocjena_glasova = ocjena_glasova+1 AND ocjena_ukupno = ocjena_ukupno+'$ocjena' WHERE id_rada = '$id'") or die(mysql_error());
And it will not work
No errors returned, nothing, the vaules remain the same (field s are bigINT).
Thanks in advance!
I have an query that just increases some values in a table, and I perfer to do it in the query itself (and not by reading the vaules before).
The query is:
mysql_query("UPDATE galerije SET ocjena_glasova = ocjena_glasova+1 AND ocjena_ukupno = ocjena_ukupno+'$ocjena' WHERE id_rada = '$id'") or die(mysql_error());
And it will not work
No errors returned, nothing, the vaules remain the same (field s are bigINT).
Thanks in advance!