does not return the mysql client names

0

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>";
}
    
asked by anonymous 14.03.2017 / 15:37

0 answers