Hi guys,
Could somebody help me in decrimenting the letters cause code like below exists
$let = 'A';
for($x=1;$x<256;$x++){
echo $let++.'-';
}
//output: A-B-C-D-E.......
i just wonder how about decrimenting it like $let--; but it didnt work
does anayone has the idea on how to generate $let--
thanks,