Like the title suggests I need to do something like so...
$i++;//we all know this.
$value = 'a';
increment($value);// i need this functionality
//output
string [ b ]
///here are some more samples, to help you understand...
increment('b'); //output// c
increment('z'); //output// A [capital A not fussy but would be good :) ]
increment('9'); //output// a1
increment('a1'); //output// a2
increment('aa1'); //output// aa2
and so on... UPDATE
well lets say I use numeric values
$id++;
I would end up with a massive number eventuall 1310743942525
;
which can take alot more space than say `ab34c9" im trying to save length of characters to save on db ...