Re: for loop inside a switch

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hulf wrote:
Hi,

switch ($q) {

for ($i=0; $i <21; $i++) {
case 'faq$i':
    echo $faq1;
    break;
 }
}


I just want to loop out a big long list of cases.

That's not a valid construct, but if I understand what you're trying do, this should work...

$faqs = array();
for ($i = 0; $i < 21; $i++)
    $faqs[] = 'faq'.$i;
if (in_array($q, $faqs))
    echo $faq1;

-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux