привет, я хочу выбрать информацию по ссылке на файл, например, в базе данных в первой строке:
file link : src/java/son3.wav | word : mailing
secund line in DB : file link : src/java/son3.wav | word: smtp
3rd line in DB : file link : src/java/son2.wav | word : server
Я хочу показать это в html.twig ::
id : 1 | file link : src/java/son3.wav | word : mailing , smtp
id : 2 | file link : src/java/son2.wav | word : server
так, чтобы выбрать все слова в БД, которые имеют одинаковую ссылку на файл, я надеюсь, это объясняет, что мне нужно.
Я использую symfony 3.4, и это так, как это было показано в моем интерфейсе:
Это фотография моей таблицы в БД:
this is the code of file twig :
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>File Link</th>
<th>Words</th>
</tr>
</thead>
<tbody>
{% for result in resultats %}
<tr>
<td><a href="{{ path('result', { 'id': result.id }) }}">{{ result.id }}</a></td>
<td>{{ result.indexeFichier.fichierUrl }}</td>
<td>{{ result.indexeMot.motValeur }}</td>
</tr>
{% endfor %}
</tbody>
</table>
and this is the code of file controller :
public function IndexAction()
{
////////////////////////////////////////////
$em = $this->getDoctrine()->getManager();
$resultats = $em->getRepository('AppBundle:Indexe')->findAll();
return $this->render('userfiles/result.html.twig', array(
'resultats' => $resultats,
));
}
}