Re: [PHP] Split Weirdness.

2001-04-30 Thread Zak Greant
Nick Davies wrote: > Why does this work : > > $categorySplit = split(",", $row['category']); > > while (list($key, $value) = each ( $categorySplit )) { > $categoryArray["$value"] = 1; > } > > But this not : > > while (list($key, $value) = each ( split(",", $row['category']) )) { > $categoryArray[

[PHP] Split Weirdness.

2001-04-30 Thread Nick Davies
Why does this work : $categorySplit = split(",", $row['category']); while (list($key, $value) = each ( $categorySplit )) { $categoryArray["$value"] = 1; } But this not : while (list($key, $value) = each ( split(",", $row['category']) )) { $categoryArray["$value"] = 1; } I ke