When running below code it shows error like this
$link = mysqli_connect($server, $user, $password, $db);
if (!$link) {
echo "Error: Unable to connect to MySQL." . PHP_EOL;
echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL;
echo "Debugging error: " . mysqli_connect_error() . PHP_EOL;
exit;
}
Warning: mysqli_connect(): Headers and client library minor version mismatch. Headers:50552 Library:50631
I am using php 7.1.2