i have a array like
$Sql="select * from table";
$t=array();
$t[]=array("name"=>$row[3],
"id"=>$row[0]);
now what i want is seperate all the 'name' which is equal to somthing.. and which don't ...just like 'where' in sql
how is it possible please help me