-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.php
32 lines (26 loc) · 1.07 KB
/
cadastro.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
<?php
//Validar se tem informaçõa (id) no GET. Igual POST - vertifica se tem valor
//consultar a base, para trazer o registro qdo id que vem no get
//ajustar o método consultar da classe conexão -
//inves de interar, vou ter dado e vou exibir no value dos campos
//require_once 'controlContato.php';
// cadastrar();
?>
<body>
<div class = "cadastro">
<form action="controlContato.php" method="POST">
<label for="nome">Nome do Contato </label>
<input type="text" class="campoTexto" name="nome" />
<label for="telefone">Telefone </label>
<input type="number" class="campoTexto" name="telefone" />
<button class="botao" type="submit"> Cadastrar</button>
<input type="hidden" name="controle" value="cadastrar" />
</form>
<?php
// if (isset($_POST["nome"])&& isset($_POST["telefone"])){
// //include ("controlContato.php");
// }
?>
</div>
</body>
</html>