-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
50 lines (43 loc) · 1.29 KB
/
index.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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="estilox.css"/>
<meta charset="UTF-8"/>
<title>PHP </title>
<script language="JavaScript" src="funcaojs.js"></script>
</head>
//teste escrevendo na conta B no repositório A
<body>
<div id="site">
<div id="divcabecalho">
<h1><center><p> Formulário de cadastro </p></center></h1>
</div>
<div id ="divconteudo">
<form id ="formIncluirU" method="post" action="tratamentof.php" >
Nome: <input type="text" name="nome">
Senha: <input type="text" name="senha">
Telefone: <input type="text" name="tel">
<input type="submit" value="enviar" name="incluirU">
</form>
<form method="post" action="apagarcli.php">
Digite o nome para apagar: <input type="text" name="nome">
<input type="submit" value="enviar">
</form>
<form method="post" action="alterarcli.php">
Digite o nome da pessoa que terá o tel alterado: <input type="text" name="nome">
Novo número (telefone): <input type="text" name="tel">
<input type="submit" value="enviar">
</form>
<br/>
<div>
<h3 id= "subtexto1"> Clientes cadastrados </h3>
</div>
<div id="divMostrarTU">
<?php require_once 'funcoes.php'; $mostrarUsuarios=new bancoUsuario(); $mostrarUsuarios->mostrarUsuarios(); ?>
</div>
</div>
<div id="divrodape">
</div>
</div>
</body>
</html>