[PHP] Re: PHP group in spanish

2002-03-11 Thread Angel Fenoy
Frank wrote: > How know a PHP group that is in spanish?. > > Thanks beforehand... > Frank.- http://www.phpes.com/ Saludos Àngel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Alphabet

2002-03-10 Thread Angel Fenoy
Robert V. Zwink wrote: > What could be simpler than: > > $range = implode(" ", range('A', 'Z')); > echo $range; > > result: > A B C D . . . The most short expression I found: $r=join('',range(@A,@Z)); echo $r; result: ABCDEFGHIJKLMNOPQRSTUVWXYZ > Am I missing something here? All this loop,

Re: [PHP] Alphabet

2002-03-07 Thread Angel Fenoy
Nico Vrouwe wrote: > $i now $a contains 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php