Posts

Showing posts with the label number

How to incrase a variable by given value ?

You can incrase a varaible value by number by += operator. If you want to incrase string by appending some data at the end, then use .= operator.See examples below: $number += 10; $string .= " and something";