Call to undefined function mysql_query()

Hello I’m trying to display rows number in bootstrap cards
I tried this code but it keeps telling me
Uncaught Error: Call to undefined function PHPMaker2020\test2\mysql_query()

             $sql ="SELECT COUNT(name)FROM supplier";
             $result = ExecuteRows($sql);
             while($row = mysqli_fetch_assoc($result))
             echo $result ;

ExecuteRows() executes the query, and returns all rows and mysqli_fetch_assoc() function fetches a result row as an associative array.No need to add it. Justreplace while($row = mysqli_fetch_assoc($result)) with while($row =$result) or foreach($resultas $row )