I would like to write a function that takes in 3 characters and increments it and returns the newly incremented characters as a string.
I know how to increase a sing
Character/string increment works in PHP (though decrement doesn't)
$x = 'AAZ'; $x++; echo $x;