The parameters of that new functions is different. Example:
<?php
$connection= mysqli_connect("localhost","user","password","database");
$query= mysqli_query($connection, "SELECT * FROM table");
while($res=mysqli_fetch_array($query)){
echo "$res[row]";
}
?>
NOTE: If you put a mysqli...