flyalaska Posted October 17, 2015 Report Share Posted October 17, 2015 On the Ranks MOD(index.php/ranks) it displays the number of pilots for each rank. I been trying to get it to show active pilots , with no luck. Anyone have any ideas? Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted October 18, 2015 Moderators Report Share Posted October 18, 2015 Inside the foreach loop add the following: if($pilot->retired == 1) { continue; } This will exclude retired pilots. If by active pilots you mean pilots who had filed any reports then add the following: $pirep = $pilot->lastpirep; $check = date("d", $pirep); $today = date("d"); $days = $today - $check; if($days < 3) { continue; } This will check if the pilot has filed any reports for the last 3 days and if true it will show the pilot otherwise it will hide the pilot from the list. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.