php mysql veritabanı bağlantı sorunu

0 Cevap php
final class MySQL {
 private $connection;

 public function __construct($hostname, $username, $password, $database) {
  if (!$this->connection = mysql_connect($hostname, $username, $password)) {
        exit('Error: Could not make a database connection using ' . $username . '@' . $hostname);
     }

     if (!mysql_select_db($database, $this->connection)) {
        exit('Error: Could not connect to database ' . $database);
     }

  mysql_query("SET NAMES 'utf8'", $this->connection);
  mysql_query("SET CHARACTER SET utf8", $this->connection);
  mysql_query("SET CHARACTER_SET_CONNECTION=utf8", $this->connection);
  mysql_query("SET SQL_MODE = ''", $this->connection);
   }

Hata: veritabanına bağlanmak olamazdı ...

0 Cevap