Hi,
I have a question on php array,
if I have the following array:
$myarray[0] = array('Name' = 'Tim', 'ID'=1);
$myarray[1] = array('Name' = 'John', 'ID' = 1);
$myarray[2] = array('Name' = 'Neil', 'ID' = 2);
how do I get the rows where ID = 1?
in this case, should return row 0 and 1 rite? wat I wish to do is to store it inside another array where ID = 1, can anyone help me?
Thanks
Josh