In my application, a user can select when particular items should be given (morning, afternoon, evening, midnight or as needed). I need to print a summary page that displays when each item should be given. The rules I am trying to instate for my sorting order are as follows:
- Items should always be displayed in chronological order, with morning first and midnight last
- Items that have multiple times to be given, should be sorted with the least number of times to give first (i.e. if Item #2 is to be given in the afternoon, midnight and as needed and Item 3 should be given afternoon, evening, midnight and as needed, then Item #2 should be listed first)
- Items that are only to be given as needed should be listed last
Here is an example:
- Item #1: Morning, Evening
- Item #2: Afternoon, Midnight, As Needed
- Item #3: Afternoon, Evening, Midnight, As Needed
- Item #4: Evening
- Item #5: As Needed
I am using PHP and MySQL, and here is my query so far:
$sth = $dbh->query("SELECT morning
afternoon,
evening
midnight
as_needed
FROM times
WHERE user_id = $user_id
ORDER BY as_needed,
morning DESC,
afternoon DESC,
evening DESC,
midnight DESC", PDO::FETCH_ASSOC);
Any ideas on how I can implement the above rules?