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?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

