-
Notifications
You must be signed in to change notification settings - Fork 0
/
registroUser.php
63 lines (49 loc) · 1.94 KB
/
registroUser.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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../styles/master.css">
<link rel="stylesheet" href="../styles/cadastraAluno.css">
<link href="https://fonts.googleapis.com/css2?family=Markazi+Text:wght@500;700&family=Oswald:wght@400;700&display=swap" rel="stylesheet">
<title>Cadastro - Ajuri</title>
</head>
<body>
<?php
/*definindo pasta para as fotos*/
$pastaArquivos='fotodeperfil/';
/*coletando o nome e o nome temporario do arquivo selecionado*/
$nomeArquivo=$_FILES["imagem"] ["name"];
$nomeTemporario=$_FILES ["imagem"] ["tmp_name"];
if (move_uploaded_file($nomeTemporario,$pastaArquivos.$nomeArquivo))
{
/* Pegando os dados vindos do formulário */
$nome = $_POST["nome"];
$nomeUsuario= $_POST["nomeusuario"];
$telefone = $_POST["tel"];
$data = $_POST["dataNasc"];
$email = $_POST["email"];
$senha = $_POST["senha"];
/*type select*/
$estado = $_POST["estado"];
$cidade = $_POST["cidade"];
require "conexao.php";
/* 2-Definindo o comando sql a ser usado */
$sql = "insert into tbusuario (NOME, USERNAME, TELEFONE, DATANASC, EMAIL, SENHA, COD_ESTADO, COD_CIDADE, IMAGEM, TIPO)
values ('$nome', '$nomeUsuario', '$telefone', '$data', '$email', '$senha', '$estado', '$cidade', '$nomeArquivo', 'usuario')";
$result = mysqli_query($conn,$sql);
//conferindo se o registro foi inserido
echo "<div>";
if($result == true){
header("Location: registroConfirm.php");
}elseif(!$conn -> $sql){
echo("Error description: <br>" . $conn-> error);
}
echo "<br>";
echo "<br>";
echo "<a href=registroUsuario.php alt=Voltar>Voltar</a>";
echo "</div>";
}
?>
</body>
</html>