I developed a portal and it works correctly on localhost, but when I went to put it in the air, the connection to the bank stopped working. So when trying to connect to the bank he does not log into the portal, he just opens a blank page written Incorrect Function . I can not figure out why this occurs, at first the connection is correct. Here is the connection:
$conexao = mysqli_connect('mysql.site.com.br','user','12345') or print(mysqli_error());
$db = mysqli_select_db($conexao, 'banco_teste') or print(mysqli_error());
I accept suggestions of what I can do to work. Thank you!