ARV187 Posted August 20, 2018 Report Posted August 20, 2018 Hi, Im trying show the top5 landing rating in frontpage_main.tpl but not work (it isn't showing and no error messages) , can anyone help me? /public_html/core/common/TouchdownStatsData.class.php public function get_stats_by_cur_month5 () { $query = "SELECT pilotid, code, flightnum, depicao, arricao, aircraft, landingrate, submitdate FROM `".TABLE_PREFIX."pireps` WHERE landingrate < '0' AND MONTH(submitdate)=MONTH(now()) AND YEAR(submitdate)=YEAR(now()) ORDER BY landingrate DESC LIMIT 5"; return DB::get_results($query); } /public_html/core/modules/TouchdownStats/TouchdownStats.php public function top_landing_this_month5 () { $this->set('stats', TouchdownStatsData::get_stats_by_cur_month5()); $this->show('public_html/lib/skins/templatemo_254_agency/frontpage_main.tpl'); } /public_html/lib/skins/templatemo_254_agency/frontpage_main.tpl <?php MainController::Run('TouchdownStats', 'display_TouchdownStats/top_landing_this_month5'); ?> Thanks! Quote
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.