-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtarefas.php
More file actions
39 lines (37 loc) · 934 Bytes
/
tarefas.php
File metadata and controls
39 lines (37 loc) · 934 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gerenciador de Tarefas</title>
</head>
<body>
<h1>Gerenciador de Tarefas</h1>
<!--Aui entra o código-->
<form>
<fieldset>
<legend>Nova Tarefa</legend>
<label>
Tarefa:
<input type="text" name="nome" />
</label>
<input type="submit" value="Cadastrar" />
</fieldset>
</form>
<?php
if(array_key_exists('nome', $_GET)) {
$lista_tarefas[] = $_GET['nome'];
}
?>
<table>
<tr>
<th>Tarefas</th>
</tr>
<?php foreach ($lista_tarefas as $tarefa) :?>
<tr>
<td><?php echo $tarefa; ?></td>
</tr>
<?php endforeach; ?>
</table>
</body>
</html>