2
Good Afternoon, I am trying to access my database to take the 12 countries present in the table and return an array with the id and name of the 12 countries but my code is only returning 1 position in the array that is the first country only, someone could help me please. Ever since I thank
function recuperaPaises(){
//Função que pega os países do banco e jogam no array de países da classe
$conexao = new DB;
$conexao=$conexao->getConnection();
$rs = $conexao->prepare("SELECT * FROM paises");
if ($rs->execute()){
$row = $rs->fetch(PDO::FETCH_OBJ);
return $row;
}
else{
$flash="OPS!... ouve algum erro em nosso Sistema. Por Favor contate administrador!";
echo $flash;
}
}