From: "Stephen Goodman" <[EMAIL PROTECTED]>

> When I run the code you've attached, with $i iterating up to 3, I get
> three 'empty!', even if $resolution1 should be 'not empty!'. It seems
> like the $i in $_POST["resolutions".$i] is not getting parsed into a
> value, and php is looking for a key resolutions$i.
>
> Whoops, I'm an idiot. Resolution singular, not plural. Thanks for the
> help everyone

Does that mean you solved it? Remember that PHP is case sensitive, too.
$_POST['Resolution'] is not the same as $_POST['resolution'].

If you're still having trouble, go back to some basic debugging. Do a
print_r($_POST) so you actually know what $_POST contains, to begin with.

---John Holmes...

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

Reply via email to