My knowledge of PHP is limited, so I searched the solution for this problem before, but I couldn't fix it.
Upon upgrading PHP to version 7, a script is returning the error:
Call to undefined function mb_convert_encoding()
Which refers to the line:
echo "<td>" . mb_convert_encoding($row['teste'],'utf-8', 'iso-8859-1') . "</td>";
So, removing the function to:
echo "<td>" . $row['teste'] . "</td>";
Will remove the error, but now the characters are like:
Gest�o or�amental
Is there another function I could use?