On Fri, 12 Sep 2003 18:58:22 -0400, Bill <[EMAIL PROTECTED]> wrote:

I'd like to do this, but it produces an error:

if ($_POST{["detail"][11][116]} && !$_POST{["detailtext"][19][114]}) {

so I'm left doing this

if ($_POST["detail"][11][116] && !$_POST["detailtext"][19][114]) {

How can I encapsulate the array so it is a multi-dimensional array and not just
a string length?

It is rather unclear what you mean, the first syntax is wrong and thus is why
it produces an error. The second one is the proper way to access
a multi-dimensional array.



Curt


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



Reply via email to