mysqli_fetch_array() expects parameter 2 to be integer, string given in code example
Example: mysqli_fetch_array() expects parameter 1 to be mysqli_result
$sql = "select * from privinsi";
$result = mysqli_query($connection,$sql);
while($r = mysqli_fetch_array($result))
{
// your code here
}