I want to get the "q" parameter value for urls like this:
How to do that using routing in Phalcon? I try this but not working:
$app->get("/artist?callback={callback:(.*)}&q={q:(.*)}&_={_:(.*)}", function ($q) {
//my logic code
}
I want to get the "q" parameter value for urls like this:
How to do that using routing in Phalcon? I try this but not working:
$app->get("/artist?callback={callback:(.*)}&q={q:(.*)}&_={_:(.*)}", function ($q) {
//my logic code
}