On Mon, 06 Dec 2004 10:13:05 -0500, Robert Sossomon <[EMAIL PROTECTED]> wrote:
[...]
> <?php
> for ($j=1, $j<5, $j++)
> {
>   $choices.$j= $_POST['choice'.$i];
>   echo $choices.$j;
> }
> ?>
[...]


You have a typo in your code. You are typing $i instead of $j. You
should write instead:
$choices.$j= $_POST['choice'.$j];

Regards,
Samer

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

Reply via email to