Hallo, hab hier ein kleines Problem! Hier erst mal der Code:
So das Problem ist das ich andauernd folgende Meldung bekomme:
Resource id #1
Konnte Abfrage nicht senden!
Wo ist der Fehler? Ich tippe mal auf die Zeile mit if (!mysql_select_db($this->dbname, $this->connect)){ ... } weiss aber nicht genau was falsch ist! Jemand eine Idee?
Danke im Voraus.
amon-ra
PHP-Code:
class sql {
var $connect;
var $result;
var $dbname = "test";
function sql($host = "localhost", $user = "test", $pass = "test"){
if (!$this->connect = mysql_connect($host, $user, $pass)){
echo $this->connect;
die ("<br>Keine Verbindung zur MySQL Datenbank!");
}
echo $this->connect;
return $this->connect;
if (!mysql_select_db($this->dbname, $this->connect)){
die ("<br>Keine Verbindung zu $this->dbname");
}
}
function abfrage($abfrage){
if (!$this->result = mysql_query($abfrage, $this->connect)){
die ("<br>Konnte Abfrage nicht senden!");
}
return $this->result;
}
}
$db = &new sql();
$db->abfrage("SELECT * FROM admins");
Resource id #1
Konnte Abfrage nicht senden!
Wo ist der Fehler? Ich tippe mal auf die Zeile mit if (!mysql_select_db($this->dbname, $this->connect)){ ... } weiss aber nicht genau was falsch ist! Jemand eine Idee?
Danke im Voraus.
amon-ra
Kommentar