I have the following php code that does a query to the database and returns a vector with the data.
public function executeSelect($query){
$resultado_id = mysqli_query($this->objetoConexao, $query);
if($resultado_id){
//Passa para um vetor o resultado da query
$dados_usuario = mysqli_fetch_array($resultado_id, MYSQLI_ASSOC);
return $dados_usuario;
}
else{
return null;
}
}
$query = "SELECT *
FROM prova_dados INNER JOIN prova_fotos ON (prova_fotos.id_dados_prova = prova_dados.id)
GROUP BY prova_fotos.id_dados_prova ";
$select = $dao->executeSelect($query);
echo var_dump($select['materia']);
But when I run this query in phpmyadmin in the "hand" it returns me two rows, with the data grouped as I want, but in the return of mysqli_fetch_array it shows me only one line.
result of same query in phpmyadmin
echophpvar_dump