Hello friends, I am developing a web project with phalcon and I am trying to get all url where 404 error page was shown. So everything is working fine. I can get url by $_GET['_url'] to store in database from my error controller. So if some one will visit page '/abc/error/page' it will be stored in database as same, but if '/abc/error/page?hello=true&cyou=later' was requested, i can't store it that way. I get '/abc/error/page' in database. I also tried with php's default $_SERVER['QUERY_STRING'] but it was same. So can anyone help me to store it simple way, the whole url with requested query strings?
Thanx for the help!!!