-
Notifications
You must be signed in to change notification settings - Fork 0
/
diretor-editar.php
39 lines (30 loc) · 1.02 KB
/
diretor-editar.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
require_once "classes/Diretor.php";
$id = $_GET['id'];
$diretor = new Diretor($id);
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Top Filmes</title>
</head>
<body>
<h1>Top Filmes</h1>
<h3>Atualizar Diretor</h3>
<form action="diretor-editar-gravar.php" method="POST">
<input type="hidden" name="id" value="<?= $diretor->id ?>">
<label for="nome">Nome : </label>
<input type="text" name="nome" value="<?= $diretor->nome ?>">
<br><br>
<label for="minibio">Mini Bio : </label>
<textarea type="text" id="minibio" name="minibio" rows="4" cols="30"><?= $diretor->minibio ?></textarea>
<br><br>
<label for="ano_nascimento">Ano de Nascimento : </label>
<input type="number" name="ano_nascimento" value="<?= $diretor->ano_nascimento ?>">
<br><br>
<input type="submit" value="Gravar">
<button type="button"><a href="diretor-listar.php">Cancelar</a></button>
</form>
</body>
</html>