-
Notifications
You must be signed in to change notification settings - Fork 43
/
registro.php
47 lines (37 loc) · 1.25 KB
/
registro.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
<?php
ob_start();
session_start(); // Inicia a sessão
require_once 'config.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$nome = $_POST['nome_cad'];
$email = $_POST['email_cad'];
$senha = $_POST['senha_cad'];
// Verifica se o email já está em uso
$query = "SELECT * FROM fatec_admin WHERE email='$email'";
$result = mysqli_query($conn, $query);
if (mysqli_num_rows($result) > 0) {
echo "<script>alert('Este email já está em uso!');</script>";
} else {
// Insere o novo usuário no banco de dados
$query = "INSERT INTO fatec_admin (nome, email, senha) VALUES ('$nome', '$email', md5('$senha'))";
if (mysqli_query($conn, $query)) {
echo '<script>alert("Usuário cadastrado com sucesso!")</script>';
header("Location: index.html#paralogin");
} else {
echo '<script>alert("Erro ao cadastrar usuário!")</script>';
header("Location: index.html#paracadastro");
}
}
}
ob_end_flush();
/*
CREATE TABLE fatec_admin (
id INT(11) NOT NULL AUTO_INCREMENT,
nome VARCHAR(100) NOT NULL,
email VARCHAR(100) NOT NULL,
senha VARCHAR(100) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY email (email)
);
*/
?>