hi Miguel
> I wanna a do a for loop with letters, Is this possible?
>
> for ($i = 'A'; $i <= 'Z'; $i++){
> // code
> }
you can, but it doesn't do what you think it should do. Apparently it
gets to Z, restarts with AA, AB, AC etc and continues like that until it
hits YZ. feck knows why :-/
hth
hi Melanie
> From: mel list_php [mailto:[EMAIL PROTECTED]
> My question is :
> 1/ the normal syntax into the brackets: with ", ' or nothing?
> I think it
> should be "" but I'm unsure.
Single quotes, but check out http://au2.php.net/types.string for details
why :)
> 2/it's working with other