Hello, this is probably a simple question, just not sure what to search for in order to find the answer... What php statement can I use to increase a number in a mysql database by one?
Thanks in advance!
| SitePoint Sponsor |

Hello, this is probably a simple question, just not sure what to search for in order to find the answer... What php statement can I use to increase a number in a mysql database by one?
Thanks in advance!


run this query:Code:update daTable set daColumn = daColumn + 1
Bookmarks