Help With Php Arrays 19.07.08
I need to cycle through multidimensional array based on a certain value eg:
My array is created like this :-
$row_data[$i][JobCatID] =$row[JobCategoriesID];
$row_data[$i][JobCatName] =$row[Name];
$row_data[$i][JobCatDescription] =$row[Description];
$i=$i+1;
when i do foreach command I want to only select row details where the array [JobCatID] is equal to eg 1
please see attached file for more details



