I have a MySQL table which contains a list of all possible products a customer can order. A (very) simplified version of this table would look like:
ID | productid | price | age_min | age_max | type
=======================================================================
1 | baseball_1 | 12.34 | 18 | 21 | 1
2 | baseball_2 | 15.99 | 22 | 30 | 1
3 | baseball_3 | 18.99 | 18 | 99 | 1
4 | golf_1 | 4.99 | 18 | 24 | 2
5 | golf_2 | 5.99 | 25 | 44 | 2
6 | tennis_1 | 9.99 | 18 | 50 | 3
7 | tennis_2 | 14.99 | 51 | 99 | 3
In this store, all products are age banded, meaning a customer can only select an item to purchase if his/her age fits in that range. A custom can only select one "type" even if multiple options exist per product "type". In the example table above, a customer who is 24 years old would only be able to select:
baseball_2, baseball_3 golf_1, and tennis_1
I am trying to lay out the options a potential customer has, organized by known product types. So in my case, the store may show the customer:
Baseball Option
- baseball_2 - $15.99
- baseball_3 - $18.99
Golf Option
- golf_1 - $4.99
Tennis Option
- tennis_1 - $9.99
I want to make a single (if possible) MySQL call to the database with the age variable and return all possible products then display these products accordingly as mentioned above. The SQL statement is simple and I already have this accomplished but I am not sure how to cycle though or build a proper array which could list out the available options for a member.
It may be suggested but this is much more detailed than shown and using any type of third party software or shopping cart is not an option due to several other factors unrelated o the question. It seems this is a question in how to deal with multidimensional arrays. Has anybody faced a similar problem before?
UPDATE
while the solutions provided below by Travesty and tdammer are valid in some circumstances, I want to be able to do more with my data then just display it as it comes out of my database. The layout and design of the page should not depend on how/when/etc it is stored in the database. There may be times I want to show the highest price first for one set of "types" while the lowest first for another.
By using a fetchAll statement, I am able to collect all of the necessary data I need from my query but I am really uncertain as how to make use of it. For example, my array is currently:
Array (
[0] => Array ( [productid] => 394, [price] => 6.20, [type] => 16 ),
[1] => Array ( [productid] => 395, [price] => 12.40, [type] => 16 ),
[2] => Array ( [productid] => 396, [price] => 18.60, [type] => 16 ),
[3] => Array ( [productid] => 397, [price] => 24.80, [type] => 16 ),
[4] => Array ( [productid] => 398, [price] => 31.00, [type] => 16 ),
[5] => Array ( [productid] => 449, [price] => 4.20, [type] => 17 ),
[6] => Array ( [productid] => 450, [price] => 8.40, [type] => 17 ),
[7] => Array ( [productid] => 451, [price] => 12.60, [type] => 17 ),
[8] => Array ( [productid] => 452, [price] => 16.80, [type] => 17 ),
[9] => Array ( [productid] => 453, [price] => 21.00, [type] => 17 )
)
Is there a good way to build my own array in a manner I would later be able to essentially say "Show me the productid and price of all items with type 17"?