Ciao a tutti cambiando computer ho notato che uno script non funziona più:
file config.php
Codice PHP:
//parametri per la connessione al database
define('DB_HOST', '*******');
define('DB_USER', '*******');
define('DB_PASSWORD', '*******');
define('DB_DATABASE', '*******');
porzione di file che lo richiama
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'");
}
L'errore che mi da è sempre:
use of undefined constant ........
secondo voi cosa può essere?