Sorry for the late reply but maybe you should take a look at the function
range.

from the manual:

foreach(range('a', 'z') as $letter) {
    echo $letter;
}

Jerry
-----Original Message-----
From: Daniel Harik [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 24, 2001 7:01 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: Generate Alphabet


Hello Fred,

Tuesday, December 25, 2001, 7:55:16 PM, you wrote:

F> for ($Character = 65; $Character < 91; $Character++)
F> {
F> echo chr($Character);
F> }

F> Fred

F> Daniel Harik <[EMAIL PROTECTED]> wrote in message
F> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>> Hello Guys,
>>
>> Just a stupid question how can i make php show from a-z with a for
>> loop, don't want to make 26 hard coded links
>>
>> Thank You very much
>>
>> --
>> Best regards,
>>  Daniel                          mailto:[EMAIL PROTECTED]
>>




Thank you

-- 
Best regards,
 Daniel                            mailto:[EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


The information contained in this email is confidential and
may be legally privileged. It is intended solely for the 
addressee. Access to this email by anyone else is 
unauthorized. If you are not the intended recipient, any 
form of disclosure, production, distribution or any action 
taken or refrained from in reliance on it, is prohibited and 
may be unlawful. Please notify the sender immediately.

The content of the email is not legally binding unless 
confirmed by letter bearing two authorized signatures.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to