Hallo Forumleser,
bin gerade dabei ein sauberen PHP Code zu schreiben bekomme aber beim Strict Mode eine Notice, womit ich nichts anfangen kann.
Strict Standards: Non-static method DepartmentSQL::QueryAll() should not be called statically, assuming $this from incompatible context in C:\Users\steffen\workspace\sysld\trunk\class\dao\DepartmentDAO.class.php on line 9
Zeile 9: $sql = DepartmentSQL::QueryAll();
Die Klasse schaut dementsprechend so aus:
class DepartmentSQL{
function QueryAll(){
$sql = "SELECT id, name, costcenter "
. "FROM t_department "
. "ORDER BY name;";
return $sql;
}
}
Kann mir jemand helfen, wie ich diesen "Fehler" behebe?
mfg Steffen