i am currently looping through this with vb.net and writing on the console:
fruits orange
fruits banana
fruits apple
numbers 1
numbers 2
numbers 3
numbers 4
numbers 5
numbers 6
etc...
however, i would like to store my values like this this:
array (
"fruits" => array (
"a" => "orange",
"b" => "banana",
"c" => "apple"
),
"numbers" => array (1,2,3,4,5,6),
"holes" => array (
"first",
5 => "second",
"third"
)
);
then when i get this, i would like to loop through each
array (
"fruit" => "orange",
"b" => "banana",
"c" => "apple"
)
and check for certain values. i can do this easily in php, however, vb.net leaves me ARGH.
any ideas?