<?php
session_start();
if (isset($_GET['nome']) && $_GET['nome'] != '') {
$_SESSION['lista_tarefas'][] = $_GET['nome'];
$tarefa = array();
$tarefa['nome'] = $_GET['nome'];
if (isset($_GET['descricao'])) {
$tarefa['descricao'] = $_GET['descricao'];
} else {
$tarefa['descricao'] = '';
}
if (isset($_GET['prazo'])) {
$tarefa['prazo'] = $_GET['prazo'];
} else {
$tarefa['prazo'] = '';
}
$tarefa['prioridade'] = $_GET['prioridade'];
if (isset($_GET['concluida'])) {
$tarefa['concluida'] = $_GET['concluida'];
} else {
$tarefa['concluida'] = '';
}
$_SESSION['lista_tarefas'][] = $tarefa;
}
include "template.php";
?>
--------------------------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<title>Gerenciador de Tarefas</title>
</head>
<body>
<div class="col-md-4"></div>
<div class="col-md-4">
<h1>Gerenciador de Tarefas</h1>
<form>
<fieldset>
<legend>Nova Tarefa</legend>
<label>
Tarefa:
<input type="text" name="nome"></input>
</label>
<label>
Descrição (opcional):
<textarea name="descricao"></textarea>
</label>
<label>
Prazo (opcional):
<input type="text" name="prazo"></input>
</label>
<fieldset>
<legend>Prioridade:</legend>
<label>
<input type="radio" name="prioridade" value="baixa" checked>
Baixa
</input>
<input type="radio" name="prioridade" value="media">
Média
</input>
<input type="radio" name="prioridade" value="alta">
Alta
</input>
</label>
</fieldset>
<label>
Tarefa concluída:
<input type="checkbox" name="concluida" value="sim"></input>
</label> </br>
<input type="submit" class="btn btn-success" value="Cadastrar"></input>
</fieldset>
</form>
<table>
<tr>
<th>Tarefa</th>
<th>Descrição</th>
<th>Prazo</th>
<th>Prioridade</th>
<th>Concluída</th>
</tr>
<?php foreach ($lista_tarefas as $tarefa) : ?>
<tr>
<td><?php echo $tarefa['nome']; ?></td>
<td><?php echo $tarefa['descricao']; ?></td>
<td><?php echo $tarefa['prazo']; ?></td>
<td><?php echo $tarefa['prioridade']; ?></td>
<td><?php echo $tarefa['concluida']; ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>
<div class="col-md-4"></div>
</body>
</html>