-1
I developed a portal and it works properly on the localhost, but when I went to put it on the air, the connection to the bank stopped working. So when trying to make the connection with the bank it does not log in to the portal, just opens a blank page written Incorrect Function. I can’t figure out why this occurs, at first the connection is correct. Below 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!
Need to check the apache error log.
– rray
And how can I do that?
– R.Gasparin
Already compared local and external PHP versions?
– viana
I don’t know how to find out the external version of the site already know.
– R.Gasparin
I had a similar problem, and it was a PHP version. Try to check this out.
– viana
Okay, thanks for the suggestion. I’ll try to find out
– R.Gasparin
The problem really was the PHP version.
– R.Gasparin