options in mysqli_fetch_assoc code example
Example 1: mysqli_fetch_assoc
0){
while($data= mysqli_fetch_assoc($result)){
/* Print all of your data*/
echo $data["ColName"];
}
}
?>
Example 2: fetch assoc oop
public mysqli_result::fetch_assoc ( ) : array