My problem is the following when I execute this code below echo returns me 3 values Repeated I could not find out why you could give me a force? : D
<?php
try{
$sql = $pdo->prepare("select * from produtos");
$sql->execute();
$resultado = $sql->fetchObject();
foreach ($resultado as $key) {
echo $resultado->nome;
echo $resultado->quantidade;
}
} catch (PDOException $e){
echo "Erro:\n" . $e->getMessage();
}
?>