|
|
|
| Привет всем
Warning: mysqli::mysqli(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xok/Documents/WebSites/CMS/adm/includes/class/XokMain.inc on line 11
|
Сам класс
<?
class XokMain
{
public $table = null;
private $conn = null;
public function __construct( $table ){
$this->table = $table;
$this->conn = new mysqli('locahost', 'xok', '123', 'xok');
if($this->conn === FALSE) die('Error connection: ' . $this->conn->connect_error);
else $this->conn->set_charset('utf8');
}
// .......
}
|
Создаю объект
<?
include_once 'includes/class/XokMain.inc';
$news = new XokMain("`news`");
|
Кто небудь может объяснить почему? | |
|
|
|
|
|
|
|
для: Jovidon
(30.07.2014 в 10:34)
| | из за одинарные кавички блин
тема закрыта
<? $this->conn = new mysqli("locahost", "xok", "123", "xok");
|
| |
|
|
|