in reply to confusing question, involving multidemensional arrays
I've got my multidementional arrays setup now, but there is something wrong with this peice of code, and I can't find it.for ($i=0; $i<=$#list; $i++){ for ($j=0; $j<=$#list[$i]; $j++){ undef($name, $url, $cat, $desc); ($name, $url, $cat, $desc) = split (/\|/$list[$i][$j]); } }
|
|---|