On 8/16/07, Hulf <[EMAIL PROTECTED]> 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.

Maybe you want this kind of functionality :
http://www.php.net/manual/en/language.variables.variable.php

$faq="faq$q";
echo $$faq;

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

Reply via email to