CLASS
class Cliente
{
private $db;
private $id;
private $nome;
private $email;
public function __construct(PDO $db)
{
$this->db=$db;
}
public function listar()
{
$query = "select * from pessoas";
$stmt = $this->db->prepare($query);
return $stmt->fetchAll(PDO::FETCH_ASSOC);
}
OBJECT
try
{
$conexao = new PDO("mysql:host=localhost;dbname=estudos","root","xxxxxxxxx");
}catch(PDOExeption $e)
{
die("Não foi possive l estabelecer a conexão com o banco de dados. ERRO=" . $e->getCode());
}
$cliente = new Cliente($conexao);
foreach($cliente->listar() as $i)
{
$i['nome'] . "<br>";
}