-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.php
50 lines (48 loc) · 1.53 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
$banco = "id3731020_teste_scc4";
$usuario = "id3731020_mateusbcb";
$senha = "@Blender00";
$hostname = "localhost";
$conn = mysql_connect($hostname,$usuario,$senha); mysql_select_db($banco) or die( "Não foi possível conectar ao banco MySQL");
if (!$conn) {
echo "Não foi possível conectar ao banco MySQL.";
exit;
}
else {
echo "Parabéns!! A conexão ao banco de dados ocorreu normalmente!.";
}
mysql_close();
echo '<link href="css/estilo.css" rel="stylesheet">';
echo '<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">';
$tipo = $_POST['tipo'];
$genero = $_POST['genero'];
$nome = $_POST['nome'];
$email = $_POST['email'];
$cpf = $_POST['cpf'];
$endereco = $_POST['endereco'];
$rg = $_POST['rg'];
$tel = $_POST['tel'];
$celular = $_POST['celular'];
echo'<table>
<tr>
<th>Nome</th>
<th>CPF/CNPJ</th>
<th>E-mail</th>
<th>Telefone</th>
<th>Localização</th>
<th>Status</th>
<th> </th>
<th> </th>
</tr>
<tr>
<td>';echo $nome;echo '</td>
<td>';echo $cpf;echo '</td>
<td>';echo $email; echo'</td>
<td>';echo $celular;echo'</td>
<td>';echo $endereco;echo'</td>
<td>';echo '<i class="fa fa-circle" style="font-size:24px;color:#2f9b29"></i> </td>
<td>';echo '<i class="fa fa-pencil" style="font-size:24px;"></i> </td>
<td>';echo '<i class="fa fa-trash" style="font-size:24px;"></i> </td>
</tr>
</table>';
?>