I am trying to retrieve 4 rows and I expected that It should display all 4 rows but it's only displaying the first row. This is the code I am using
$coquery = "Select distinct coName from avgcarcompany";
$crun = mysqli_query($con,$coquery);
$arrey = mysqli_fetch_assoc($crun);
print_r($arrey);