We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

How to get url parameters invo ?

I create project with using invo-master.

I have get parameter https://training/user/history?month=02&year=2018

What wil here $publicResources = [ 'index' => ['index','stop'], 'errors' => ['show401', 'show404', 'show500'], 'session' => ['index', 'register', 'start', 'end'], 'user/' => ['index','archives','history'], ];

public function historyAction($month,$year){ var_dump($month); // return me NULL - how me get 02 var_dump($year); // return me NULL - how me get 2018 die; }

How get $month = 02 and $year = 2018

Hi @abdusamat remove the extra slash in $publicResources user/ => user