I'm doing a pretty big Postgres query. Is it possible to echo the results gradually in spite of waiting for the end of the query to echo all the results?
My code:
$sql1 = pg_query("select zhu_gid from indicateurs.note where zhu_gid not in (select gid from public.zh);");
while($data = pg_fetch_array($sql1))
{
echo $data['zhu_gid']."/";
}