Ciao, prima di tutto scusate il nome del topic ma nn sapevo come chiamarlo...
ho un problema con le mie pagine php, ricevo il seguente errore:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /membri/jacki/include/class-database.php on line 5
la pagina php é questa:
Codice PHP:
class Database {
private $db;
public $query_count;
public function __construct() {
include 'settings.php';
$this->db = mysql_connect( $db_host,
$db_user,
$db_pass
);
mysql_select_db( $db_name,
$this->db
);
}
public function __destruct() {
mysql_close($this->db);
}
public function query($query) {
$this->query_count++;
return mysql_query($query);
}
public function mysql_fetch_array($query) {
$result = $this->query($query);
return mysql_fetch_array($result);
}
public function mysql_fetch_row($query) {
$result = $this->query($query);
return mysql_fetch_row($result);
}
public function count($query) {
return mysql_num_rows($this->query($query));
}
}
non capisco davvero perche mi da quell'errore, in locale funziona tutto perfettamente...ciao e grazie..