-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastraPessoa.php
55 lines (42 loc) · 1.45 KB
/
cadastraPessoa.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
48
49
50
51
52
53
54
55
<?php
error_reporting(0);
require_once('verifica_login.php');
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="refresh" content="2;url=index.php">
<title>Prestare - Cadastro </title>
<link rel="stylesheet" href="./assets/bulma.min.css">
</head>
<body>
<?php
echo "<h1 class='is-size-3'>Redirecionando...</h1>";
//$conexao = mysqli_connect()('localhost', 'root', '', 'prestare');
$name = $_POST["name"];
$login = $_POST["login"];
$password = $_POST["password"];
$sql_error = "SELECT * FROM pessoas where userLogin='$login'";
// Validação de User
$mysql_get_users = mysqli_query($conexao, $sql_error);
$get_rows = mysqli_affected_rows($conexao);
if ($get_rows >= 1) {
echo '<h1 class="is-size-3">Usuário já existe!</h1> <br />
<a class="button is-block is-warning " href="index.php" >Voltar</a>';
die();
}
// Cadastra User
$sql = "INSERT INTO pessoas (userName , userLogin, userPassword) VALUES";
$sql .= "('$name', '$login', '$password')";
mysqli_query($conexao, $sql) or die('<h1 class="is-size-5">Não conseguimos cadastrar no banco de dados!</h1> <br />
<a class="button is-block is-warning " href="index.php" >Voltar</a>');
echo 'Cliente cadastrado com sucesso! <br />
<a class="button is-warning " href="index.php" >Voltar</a>';
// mysqli_close($conexao);
?>
</script>
</body>
</html>