I have just asked a question on SO and found out I can make use of ++
to increment letters. I have now tried this:
$last_id = get_last_id();
echo gettype($last_id); //string
echo 'L_ID ->'.$last_id.'<br />'; //AAF
$next_id = $last_id++;
echo 'N_ID ->'.$next_id.'<br />';//AAF
The following example which I was given works fine:
$x = 'AAZ';
$x++;
echo $x;//ABA
What is going on? Must be the end of the work day...
Thanks all for any help