Hello. I do not know how send velue with GET REQUEST, i Have database with table videos
it is my VideoController
      public function indexAction()
    {
        if ($this->request->isGet()) {
         $id = $this->request->getQuery("id");
         $name = $this->request->getQuery("name");
         $poster_url = $this->request->getQuery("poster_url");
         $source_url = $this->request->getQuery("poster_url");
         $this->view->video = Videos::find();
        }
whan i start to play video i get https://localhost/project/videos/ this url , i want to get videos with id and get videos/1 videos/2 etc...