Fatal error: Uncaught Error: Call to undefined function mysqli_result() in /home/prasanth/projects/ishen1/index.php:49 Stack trace: #0 {main} thrown how to slove this
            Asked
            
        
        
            Active
            
        
            Viewed 81 times
        
    1 Answers
-1
            
            
        according to this answer https://stackoverflow.com/a/17707384/8284461 that function is inefficient, you can use mysqli_fetch_assoc() instead. for example: 
while($row = mysqli_fetch_assoc($result)) {
   $id = $row['ID'];
   $name = $row['name']; 
   etc..
}
 
    
    
        azisuazusa
        
- 317
- 1
- 12
- 
                    – Prasanth P S Jul 17 '17 at 14:10
