[thelist] [thechat] Perl arrays -- SOLVED

Chris Marsh thelist at lists.evolt.org
Tue Feb 18 08:25:01 2003


For anyone that's interested:

while (($key, $value) = each(%query)) {
	@numkey = split("\x1c", $key);
	$i = $numkey[0];
	$key = $numkey[1];
	$windows[$i]{$key} = $value;
}

does the trick.

Regards

Chris Marsh