Hi,
Say I have a two dimensional array $values[][].
Now I want to extract all the values with a specific value in the "second dimension":
$colum[] = $values[][1] //( = all)
How do I do that? Is the only way through a while loop, or can I use wildecards in arrays? The manual is awfully silent, as far as I can tell. (But since the search functionality is not operating properly.. )
J.