hey all,
can someone please help me with this array problem.. im building a 2 dimentional array in a while loop. i copypasted the code here:
$tags[tag][] = stripComments($buffer);
$tags[regel][] = $teller;
now i have an array and i need to get the data out one at the time.. i tried the following:
foreach($tags[tag] as $tag) {
echo $tag;
}
but that wont work.. i can solve this with a counter that runs from 0 to the values of the array but thats not the nicest way to code.
help is more as welcome!
GR>
tiec