Hello,
Is it possible to increment a field value in a MySQL table by 1 in one line? For example:
mysql_query("UPDATE table SET field_name='field_value++' WHERE fieldID='criteria'");
...rather than pulling the value of that field out, incrementing it, and then inserting it back in.
Any help is appreciated.
Thanks!
Pipe