Hi Leute,
folgendes:
index.php
Funktioniert 1a
Dann erstelle ich eine Instanz von Comment()
In Comment.class.php
wirft den Fehler:
Wieso bekommt er die Argumente nicht - welchen Fehler mache ich?
MfG bluma
folgendes:
index.php
PHP-Code:
$mysql = new DB_MySQL("localhost", "***", "***", "***");
$mysql->connect();
Dann erstelle ich eine Instanz von Comment()
PHP-Code:
$comment = new Comment();
$comment->getAll();
PHP-Code:
class Comment extends DB_MySQL {
// ...
$db = new DB_MySQL("localhost", "***", "***", "***");
$db->connect();
// ...
}
Code:
Warning: Missing argument 1 for DB_MySQL::__construct()... Warning: Missing argument 2 for DB_MySQL::__construct()... Warning: Missing argument 3 for DB_MySQL::__construct()... Warning: Missing argument 4 for DB_MySQL::__construct()...
MfG bluma
Kommentar