db_connect.php
<?php
class DB_Connect {
private $conn;
public function connect()
{
require_once 'config.php';
$this->conn = new mysqli_connect(host:DB_HOST,username:DB_USER,passwd:DB_PASSWORD,dbname:DB_DATABASE);
return $this->conn;
}
}
?>
config.php
<?php
define(DB_HOST, "localhost");
define(DB_USER, "root");
define(DB_PASSWORD, "");
define(DB_DATABASE, "bluepeatshop");
?>
Ошибка:
Parse error: syntax error, unexpected ':' in C:\wamp64\www\bluepeatshop\db_connect.php
on line 9