Hi
I'm sure there is a simple solution to this, but I can't seem to find it. Basically, i'm trying to create a function where PHP will return the next value in its alphabetic sequence.
E.g.
Lets say I have an array, or database list of:
aaaa
aaab
aaac
aaad
I want it to look at those, and print the next in line, i.e. aaae
The same if it keeps going to:
aaaz
aaba
aabb....it wil return the next as aabc
and so on until you have zzzz
Thanks for taking time to read this.
Ant