From:             [EMAIL PROTECTED]
Operating system: Linux 7.1
PHP version:      4.0.4pl1
PHP Bug Type:     Arrays related
Bug description:  echoed multipdimensional arrays

Multidemensional arrays seem to not work within an echo.

$variable[one][two] = 'Hi There';
$variable[one][three] = 'This is a bug';

echo "
  <html><body>
  $variable[one][two]<br>
  $variable[one][three]
  </body></html>
";

results in 
  Array[two]
  Array[three] 
rather than the expected
  Hi There
  This is a bug
-- 
Edit bug report at: http://bugs.php.net/?id=13010&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to