私はこのエラーを受け取り続けました
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166
Fatal error: Class 'mysqli_connect' not found in C:\xampp\htdocs\bb2\includes\classes\connection.php on line 3
理由がわかりません、これが私のコードです
これはconfig.phpです
<?php
define("DB_HOST","localhost");
define("DB_USER","root");
define("DB_NAME","beatbeast");
define("DB_PASSWORD","123192");
?>
これが私のconnection.phpです
<?php
require_once('config.php');
$mysqli = new mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);