Naja, ich brauche OOP wenn nur für webanwendungen; will mich (wenn ich mal Zeit habe ) mal an ein eignes kleines Templatesystem geben usw .
Habe jetzt allerdings das Problem, dass ich die Fehlermeldung
"Fatal error: Call to a member function on a non-object in D:\Apache2\htdocs\skorpi\warenkorb.php on line 2" bekomme
line 2 ist:
$_SESSION[korb]->showcart();
Damit instanziere und speichere ich das Objekt.. ist das so ok? (muss doch eine Sache nur 1x in der session speichern oder?)
Habe jetzt allerdings das Problem, dass ich die Fehlermeldung
"Fatal error: Call to a member function on a non-object in D:\Apache2\htdocs\skorpi\warenkorb.php on line 2" bekomme
line 2 ist:
$_SESSION[korb]->showcart();
PHP:
if(!isset($korb))
{
$korb = new warenkorb;
$_SESSION[korb] = "$korb";
}
Damit instanziere und speichere ich das Objekt.. ist das so ok? (muss doch eine Sache nur 1x in der session speichern oder?)