How can I, using php, increase the value of an variable in an table in MySQL ? like setting an varianle +30 or so or -30 something like that. thx!
Run an SQL statement that does something like this:
UPDATE table_name SET col1 = col1 + 30;