-3
I’ve tried php.ini, reinstalling php on the computer, reinstalling xampp to "activate mysqli", but nothing works and my online host does not allow php lower than php 7.4.
Error presented:
Fatal error : Undetected error: call for undefined function mysqli_connect ().
<?php
$servidor = "localhost";
//$usuario = "marcelo";
//$senha = "123";
$usuario = "root";
$senha = "";
$dbname = "dams";
//Criar a conexao
$conn = mysqli_connect($servidor, $usuario, $senha, $dbname) or die("Falha na conexao: " . mysqli_connect_error());
"I have tried several ways to activate the supposed "mysqli"", what were those ways?
– Woss
@Woss Mexi in php.ini, I changed some things reinstalled php on the pc that offline. On the online system I made no changes.
– Marcelo Marcos