![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archivearray problem
From: julian_m <julianmaisano@gmail.com>
Date: Fri Mar 31 2006 - 06:01:49 CEST
let's say that I've an array like this:
$AL_array = Array (
and I want to output
key 23 => level 1
I've tried "list" without luck, and I cant see where could be the
for ($i = 1; $i <= count($AL_array); $i++){
list($id, $level) = $AL_array[$i];
above code prints
key => level
(without the array values)
Any hint?
regards - jm
|