public function showAction(Request $request) { //$word = $request->query->get('keywords')['search']; $word = 'toshiba'; $repository = $this->getDoctrine()->getRepository('CustomExampleBundle:Product'); $query = $repository->createQueryBuilder('p') ->where('p.title= :word') ->setParameter('word', '%'.$word.'%') ->getQuery(); $result = $query->getArrayResult(); // return $this->render('CustomExampleBundle:Search:search.html.twig', array( // 'entity' => $result)); }
Proszę o pomoc.