Incrementing / Decrementing a Number by a Number with PHP

1 · Josh Sherman · Sept. 30, 2013, midnight
We’ve previously discussed how to simply increment and decrement a variable but that only covered incrementing by a value of 1. What about when you want to increment a variable by 5s? There’s a few different ways this can be accomplished. First, the obvious (albeit far from ideal) using ++......