Wenn du ganz sicher bist, dass du auch die richtige Datei hochgeladen hast, dann poste mal bitte die Zeile, wo er denn letztendlich die MySQL Verbindung aufbaut
(mysqli_connect oder so was, je nachdem welche Extension du nutzt).
Wenn du ganz sicher bist, dass du auch die richtige Datei hochgeladen hast, dann poste mal bitte die Zeile, wo er denn letztendlich die MySQL Verbindung aufbaut
(mysqli_connect oder so was, je nachdem welche Extension du nutzt).
Da, in Zeile 23, wie es oben im fehlercode angezeigt wird.
<?php
class mysql {
protected $host;
protected $user;
protected $pw;
protected $db;
protected $linkID = null;
protected $queryID = null;
public function __construct($host = "", $user = "", $pw = "", $db = "") {
$this->host = $host;
$this->user = $user;
$this->pw = $pw;
$this->db = $db;
$this->linkID = $this->connect();
$this->select_db();
}
protected function connect() {
return mysql_connect( $this->host, $this->user, $this->pw );
}
protected function select_db() {
@mysql_select_db( $this->db );
}
public function sendQuery( $query ) {
$this->queryID = @mysql_query($query, $this->linkID);
return $this->queryID;
}
public function fetchArray( $query = "" ) {
if ($query !== null) $this->queryID = $query;
class mysql {
protected $host;
protected $user;
protected $pw;
protected $db;
protected $linkID = null;
protected $queryID = null;
public function __construct($host = "", $user = "", $pw = "", $db = "") {
$this->host = $host;
$this->user = $user;
$this->pw = $pw;
$this->db = $db;
$this->linkID = $this->connect();
$this->select_db();
}
protected function connect() {
return mysql_connect( $this->host, $this->user, $this->pw );
}
protected function select_db() {
@mysql_select_db( $this->db );
}
public function sendQuery( $query ) {
$this->queryID = @mysql_query($query, $this->linkID);
return $this->queryID;
}
public function fetchArray( $query = "" ) {
if ($query !== null) $this->queryID = $query;
return @mysql_fetch_array($this->queryID);
}
public function fetchRow( $query = "" ) {
if ($query !== null) $this->queryID = $query;
}
public function fetchRow( $query = "" ) {
if ($query !== null) $this->queryID = $query;
return @mysql_fetch_row($this->queryID);
}
public function numRows ( $query = "" ) {
if ($query !== null) $this->queryID = $query;
return @mysql_num_rows( $this->queryID );
}
public function escapeString( $string = "" ) {
return @mysql_real_escape_string( $string );
}
}
}
public function numRows ( $query = "" ) {
if ($query !== null) $this->queryID = $query;
return @mysql_num_rows( $this->queryID );
}
public function escapeString( $string = "" ) {
return @mysql_real_escape_string( $string );
}
}