Ciao a tutti cambiando computer ho notato che uno script non funziona più:
file config.php
porzione di file che lo richiamaCodice PHP://parametri per la connessione al database
define('DB_HOST', '*******');
define('DB_USER', '*******');
define('DB_PASSWORD', '*******');
define('DB_DATABASE', '*******');
L'errore che mi da è sempre:Codice PHP:require_once('config.php');
abstract class queryDb {
protected $mMysqli;
function __construct(){
$this->mMysqli = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE);
$this->mMysqli->query("SET NAMES 'utf8'");
}
use of undefined constant ........
secondo voi cosa può essere?

Rispondi quotando
B_HOST , Config:
