-
Notifications
You must be signed in to change notification settings - Fork 0
/
classe_cliente.php
79 lines (69 loc) · 2.42 KB
/
classe_cliente.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
Class Cliente{
private $pdo;
// CONEXAO COM O BANCO DE DADOS
public function __construct($host, $port, $dbname, $user, $senha)
{
$host = "localhost"; // ou o endereço IP ou nome de domínio do servidor MySQL
$port = 3306; // ou outra porta configurada para o MySQL
$dbname = "ecom_store";
$user = "root";
$senha = "";
try
{
$this->pdo = new PDO('mysql:host=' . $host . ';port=' . $port . ';dbname=' . $dbname .';', $user, $senha);
}
catch(PDOException $e)
{
echo "Erro com banco de dados: ".$e->getMessage();
}
catch(Exception $e)
{
echo "Erro generico: ".$e->getMessage();
}
}
public function buscarMensagens()
{ $res = array();
$cmd = $this->pdo->query("SELECT * FROM message_clients ORDER BY id desc");
$res = $cmd->fetchAll(PDO::FETCH_ASSOC);
return $res;
}
public function cadastrarMensagem($nome, $email, $assunto, $telefone, $mensagem)
{
$cmd = $this->pdo->prepare("INSERT INTO message_clients (nome, email, assunto, telefone, mensagem) VALUES (:n, :e, :a, :t, :m)");
$cmd->bindValue(":n", $nome);
$cmd->bindValue(":e", $email);
$cmd->bindValue(":a", $assunto);
$cmd->bindValue(":t", $telefone);
$cmd->bindValue(":m", $mensagem);
$cmd->execute();
}
public function excluirMensagem($id)
{
$cmd = $this->pdo->prepare("DELETE FROM message_clients WHERE id = :id");
$cmd->bindValue(":id", $id);
$cmd->execute();
}
// EDITAR (UPDATE)
public function buscarDadosCliente($id)
{
$res = array();
$cmd = $this->pdo->prepare("SELECT * FROM message_clients WHERE id = :id");
$cmd->bindValue(":id",$id);
$cmd->execute();
$res = $cmd-> fetch(PDO::FETCH_ASSOC);
return $res;
}
public function atualizarDados($id, $nome, $email, $assunto, $telefone, $mensagem)
{
$cmd = $this->pdo->prepare("UPDATE message_clients SET nome = :n, email= :e, assunto= :a, telefone = :t, mensagem= :m WHERE id = :id");
$cmd->bindValue(":n", $nome);
$cmd->bindValue(":e", $email);
$cmd->bindValue(":a", $assunto);
$cmd->bindValue(":t", $telefone);
$cmd->bindValue(":m", $mensagem);
$cmd->bindValue(":id",$id);
$cmd->execute();
}
}
?>