-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabela.php
25 lines (25 loc) · 911 Bytes
/
tabela.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<table>
<tr>
<th>Tarefas</th>
<th>Descrição</th>
<th>Prazo</th>
<th>Prioridade</th>
<th>Concluída</th>
<th>Opções</th>
</tr>
<?php foreach ($lista_tarefas as $tarefa) : ?>
<tr>
<td>
<a href="tarefa.php?id=<?php echo $tarefa['id'];?>"><?php echo $tarefa['nome'];?></a>
</td>
<td><?php echo $tarefa['descricao'];?></td>
<td><?php echo traduz_data_para_exibir($tarefa['prazo']);?></td>
<td><?php echo traduz_prioridade($tarefa['prioridade']);?></td>
<td><?php echo traduz_concluida($tarefa['concluida']);?></td>
<td>
<a href="editar.php?id=<?php echo $tarefa['id'];?>">Editar</a>
<a href="remover.php?id=<?php echo $tarefa['id'];?>">Remover</a>
</td>
</tr>
<?php endforeach;?>
</table>