Try using $_POST["listItem$i"] instead of $_POST["listItem" . $i]
or do something like this:

$post_var_name = 'listItem' . $i;

this do $_POST[$post_var_name];

I don't think you can do any evaluation within the brackets. Thus, you couldn't use the concatenating dot.

-Ben

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



Reply via email to